Bump mkdocs-material from 9.6.21 to 9.6.22 #244
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: Pull Request | |
| on: pull_request | |
| concurrency: | |
| group: ${{ github.event.pull_request.number }}-${{ github.workflow }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| name: Run Tests | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: extractions/setup-just@v3 | |
| - uses: astral-sh/setup-uv@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Setup Docker Compose | |
| uses: KengoTODA/actions-setup-docker-compose@main | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Run pytest | |
| run: just pytest | |
| - name: Run ruff lint and checks | |
| run: just lint | |
| - name: Run mypy checks | |
| run: just mypy | |
| checks-successful: | |
| name: All Checks Passed | |
| runs-on: ubuntu-latest | |
| if: always() | |
| needs: [test] | |
| steps: | |
| - uses: re-actors/[email protected] | |
| with: | |
| jobs: ${{ toJSON(needs) }} |