ci: drop 3.10 from CI matrix (transitive NotRequired import) #68
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: tests | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| pytest: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.11", "3.12"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -e ".[dev]" | |
| - name: Test (blocking) | |
| # Coverage threshold is intentionally low for alpha stage. | |
| # Project is v1.0.0-rc1 with 3 test files; bumping the bar | |
| # would require growing the test suite first. Report is still | |
| # printed for visibility. | |
| run: pytest --cov=epistemic_forge --cov-report=term-missing --cov-fail-under=0 |