Fixes to dev container and tests (but some test cases fail, e.g. runn… #859
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| check: | |
| uses: ./.github/workflows/_check.yml | |
| lint: | |
| needs: check | |
| if: needs.check.outputs.branch-pr == '' | |
| uses: ./.github/workflows/_tox.yml | |
| with: | |
| tox: pre-commit | |
| test: | |
| needs: check | |
| if: needs.check.outputs.branch-pr == '' | |
| strategy: | |
| matrix: | |
| runs-on: ["ubuntu-latest"] # can add windows-latest, macos-latest | |
| python-version: ["3.11"] | |
| include: | |
| # Include one that runs in the dev environment | |
| - runs-on: "ubuntu-latest" | |
| python-version: "dev" | |
| fail-fast: false | |
| uses: ./.github/workflows/_test.yml | |
| with: | |
| runs-on: ${{ matrix.runs-on }} | |
| python-version: ${{ matrix.python-version }} | |
| secrets: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
| docs: | |
| needs: check | |
| if: needs.check.outputs.branch-pr == '' | |
| uses: ./.github/workflows/_docs.yml | |
| permissions: | |
| contents: write | |
| example: | |
| needs: test | |
| if: github.ref_name == 'main' | |
| uses: ./.github/workflows/_example.yml | |
| secrets: | |
| EXAMPLE_DEPLOY_KEY: ${{ secrets.EXAMPLE_DEPLOY_KEY }} | |
| release: | |
| if: github.ref_type == 'tag' | |
| needs: docs | |
| uses: ./.github/workflows/_release.yml | |
| permissions: | |
| contents: write |