Bump mako from 1.3.10 to 1.3.11 #2874
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
| # Syntax reference for this file: | |
| # https://help.github.com/en/articles/workflow-syntax-for-github-actions | |
| name: Documentation | |
| on: | |
| push: | |
| branches: ["master"] | |
| pull_request: | |
| # https://gist.github.com/c-bata/ed5e7b7f8015502ee5092a3e77937c99 | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| - name: Install the project | |
| run: uv sync --dev | |
| - name: Build Sphinx docs | |
| working-directory: doc | |
| env: | |
| SPHINXOPTS: --keep-going | |
| run: | | |
| uv run make html | |
| - name: Check general doc coverage | |
| run: | | |
| uv run docstr-coverage . -e ".*(.env|.venv|migrations|instance|doc).*" -F 73 | |
| - name: Check models doc coverage | |
| run: | | |
| uv run docstr-coverage collectives/models | |
| - name: Check utils doc coverage | |
| run: | | |
| uv run docstr-coverage collectives/utils | |
| - name: Check api doc coverage | |
| run: | | |
| uv run docstr-coverage collectives/api | |
| - name: Check routes doc coverage | |
| run: | | |
| uv run docstr-coverage collectives/routes |