build: coordinate Python and dependency support with FreeGS4E #93
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: Pytest Check | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| test-matrix: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.10", "3.12", "3.14"] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup | |
| uses: './.github/actions/cicd-setup' | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Run pytest | |
| run: python -m pytest -v | |
| tests: | |
| needs: test-matrix | |
| runs-on: ubuntu-latest | |
| steps: | |
| - run: echo "All test matrix jobs passed" |