Bump filelock from 3.18.0 to 3.20.3 #642
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: Check docs | |
| on: | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| check: | |
| name: Check docs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| enable-cache: true | |
| - name: Sync dependencies | |
| run: uv sync | |
| - name: Build docs | |
| run: uv run mkdocs build -d build --strict | |
| - name: Upload docs | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: docs | |
| path: build |