Skip to content

[pre-commit.ci] pre-commit autoupdate #481

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #481

Workflow file for this run

name: Default Tests
on:
pull_request:
push:
jobs:
run:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
os: [windows-latest, ubuntu-latest, macos-latest]
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Setup Micromamba ${{ matrix.python-version }}
uses: mamba-org/setup-micromamba@v1
with:
environment-name: TEST
init-shell: bash
create-args: >-

Check failure on line 24 in .github/workflows/default-tests.yml

View workflow run for this annotation

GitHub Actions / Default Tests

Invalid workflow file

The workflow is not valid. .github/workflows/default-tests.yml (Line: 24, Col: 22): The expression is not closed. An unescaped ${{ sequence was found, but the closing }} sequence was not found.
python=${{ matrix.python-version } pip
--file requirements.txt
--file test_requirements.txt
--channel conda-forge
- name: Install compliance-checker
shell: bash -l {0}
run: |
python -m pip install -e . --no-deps --force-reinstall
- name: Default Tests
shell: bash -l {0}
run: python -m pytest -s -rxs -v -k "not integration" compliance_checker