Fix unnecessary parentheses in indexed assignment RHS #335
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: docs | |
| on: | |
| push: | |
| paths: ["docs/**", "src/**", "pyproject.toml", ".github/workflows/docs.yml"] | |
| pull_request: | |
| paths: ["docs/**", "src/**", "pyproject.toml", ".github/workflows/docs.yml"] | |
| permissions: | |
| contents: read | |
| jobs: | |
| docs: | |
| # We want to run on external PRs, but not on our own internal PRs as they'll be run | |
| # by the push to the branch. Without this if check, checks are duplicated since | |
| # internal PRs match both the push and pull_request events. | |
| if: | |
| github.event_name == 'push' || github.event.pull_request.head.repo.full_name != | |
| github.repository | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, windows-latest] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| persist-credentials: false | |
| - name: Set up latest Python | |
| uses: actions/setup-python@a309ff8b426b58ec0e2a45f0f869d46889d02405 # v6.2.0 | |
| with: | |
| python-version: "3.13" | |
| pip-version: "25.3" | |
| pip-install: -e .[d] --group docs | |
| - name: Build documentation | |
| run: sphinx-build -a -b html -W --keep-going docs/ docs/_build |