feat: docs cleanup #121
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 build of Documentation | |
| on: | |
| pull_request: | |
| paths: | |
| - 'docs/**' | |
| jobs: | |
| build-docs: | |
| runs-on: ubuntu-latest | |
| environment: | |
| name: docs | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-python@v5 | |
| id: cached_python_setup | |
| with: | |
| python-version: "3.10" | |
| cache: 'pip' | |
| cache-dependency-path: pyproject.toml | |
| - run: echo '${{ steps.cached_python_setup.outputs.cache-hit }}' | |
| - name: Build docs and check for errors | |
| run: bash scripts/build_docs.sh |