🧹 migrate to uv #108
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: Verify documentation | |
| on: | |
| push: | |
| branches: ["main", "master"] | |
| pull_request: | |
| branches: ["main", "master"] | |
| jobs: | |
| verify-docs: | |
| name: Check Documentation | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv and set the python version | |
| uses: astral-sh/setup-uv@v6 | |
| with: | |
| python-version: '3.13' | |
| enable-cache: true | |
| - name: Install dependencies | |
| run: uv sync --locked --group docs | |
| - name: Build docs with MkDocs | |
| run: make docs | |
| - name: Check Markdown links | |
| uses: byrnereese/github-action-mkdocs-link-check@1.0 |