chore: Upgrade Python requirements #1007
Workflow file for this run
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: Python Tests | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: | |
| - "**" | |
| # Called from release.yml before publishing on push to main. | |
| workflow_call: | |
| jobs: | |
| python-tests: | |
| name: ${{ matrix.toxenv }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ["3.12"] | |
| toxenv: [quality, docs, django42, django52] | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0 | |
| with: | |
| enable-cache: true | |
| python-version: "${{ matrix.python-version }}" | |
| - name: Install CI dependencies | |
| run: uv sync --group ci | |
| - name: Run tests with Tox (${{ matrix.toxenv }}) | |
| env: | |
| TOXENV: ${{ matrix.toxenv }} | |
| run: uv run tox | |
| - name: Upload coverage to Codecov | |
| if: matrix.python-version == '3.12' && matrix.toxenv == 'django42' | |
| uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v6.0.2 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| flags: unittests | |
| fail_ci_if_error: true |