docs: Clarify how classical operations behave in dagger blocks #562
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: Test sphinx docs build | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - '**' | |
| workflow_dispatch: {} | |
| jobs: | |
| test: | |
| name: Test sphinx docs build | |
| runs-on: ubuntu-latest | |
| env: | |
| UV_FROZEN: 1 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - uses: extractions/setup-just@v3 | |
| with: | |
| just-version: '1.40.0' | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| with: | |
| enable-cache: true | |
| version: "0.11.22" | |
| - name: Run the docs build | |
| run: | | |
| just build | |
| # just coverage | |
| just link-check | |