Update documentation toolchain and rewrite existing pages #23
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
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - "docs/**" | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| documentation: | |
| name: "Ensure documentation builds" | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: "Set up Python 3.x" | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.x" | |
| - name: "Install requirements" | |
| run: "python3 -m pip install -r requirements.txt" | |
| working-directory: "docs" | |
| - name: "Build documentation" | |
| run: "zensical build --clean" | |
| working-directory: "docs" |