[pre-commit.ci] pre-commit autoupdate #512
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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@v4 | ||
- 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 GitHub Actions / Default TestsInvalid workflow file
|
||
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 |