Add 2D projection output with full AMR structure #1360
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 toctree coverage | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - development | |
| pull_request: | |
| jobs: | |
| docs-toctree: | |
| name: Validate MkDocs navigation | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6.0.1 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.x' | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install pyyaml | |
| - name: Check for unreachable Markdown pages | |
| run: python scripts/check_docs_toctree.py |