Fix broken link. #559
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| # Fetch history and tags to enable correct versioning | |
| fetch-depth: 0 | |
| - uses: hynek/build-and-inspect-python-package@v2 | |
| tests: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| include: | |
| - name: pytest (3.10) | |
| python: "3.10" | |
| tox: "3.10" | |
| - name: pytest (3.11) | |
| python: "3.11" | |
| tox: "3.11" | |
| - name: pytest (3.12) | |
| python: "3.12" | |
| tox: "3.12" | |
| - name: pytest (3.13) | |
| python: "3.13" | |
| tox: "3.13" | |
| coverage: true | |
| - name: pytest (3.14) | |
| python: "3.14" | |
| tox: "3.14" | |
| - name: mypy | |
| python: "3.13" | |
| tox: mypy | |
| - name: pyright | |
| python: "3.13" | |
| tox: pyright | |
| - name: ruff format | |
| python: "3.13" | |
| tox: ruff-format | |
| - name: ruff check | |
| python: "3.13" | |
| tox: ruff-check | |
| - name: docs | |
| python: "3.13" | |
| tox: docs | |
| name: ${{ matrix.name }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: astral-sh/setup-uv@v6 | |
| with: | |
| python-version: ${{ matrix.python }} | |
| activate-environment: true | |
| - run: uv pip install tox tox-uv | |
| - run: tox -e ${{ matrix.tox }} |