chore(deps): upgrade dependency pytest to v9 #766
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: "Documentation Checks" | |
| on: | |
| push: | |
| paths: | |
| - "discord/**" | |
| - "docs/**" | |
| - "requirements/**" | |
| - "*.toml" | |
| - "*.py" | |
| branches: [master] | |
| pull_request: | |
| paths: | |
| - "discord/**" | |
| - "docs/**" | |
| - "requirements/" | |
| - "*.toml" | |
| - "*.py" | |
| workflow_dispatch: | |
| inputs: | |
| with_linkcheck: | |
| type: boolean | |
| description: "Whether to run the linkcheck" | |
| default: true | |
| schedule: | |
| - cron: "0 0 * * *" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| permissions: write-all | |
| jobs: | |
| docs: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: "Checkout Repository" | |
| uses: actions/checkout@v5 | |
| - name: "Setup Python" | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.13" | |
| - name: "Setup UV" | |
| uses: ./.github/actions/sync-uv | |
| with: | |
| groups: 'dev,docs' | |
| - name: "Check Links" | |
| env: | |
| SPHINXBUILD: ${{ github.workspace }}/.venv/bin/sphinx-build | |
| if: ${{ github.event_name == 'schedule' || inputs.with_linkcheck }} | |
| run: | | |
| cd docs | |
| make linkcheck | |
| - name: "Compile to html" | |
| env: | |
| SPHINXBUILD: ${{ github.workspace }}/.venv/bin/sphinx-build | |
| run: | | |
| cd docs | |
| make -e SPHINXOPTS="-D language='en'" html |