UI improvements: shape delete, options scroll, inspection ortho #6
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
| # Verify Sphinx docs build (same stack as Read the Docs). | |
| name: Documentation | |
| on: | |
| push: | |
| branches: [main, master] | |
| paths: | |
| - ".github/workflows/docs.yml" | |
| - ".readthedocs.yaml" | |
| - "doc/**" | |
| - "usage.md" | |
| - "usage-*.md" | |
| - "scripting.md" | |
| - "res/icons/**" | |
| - "doc/gen/**" | |
| pull_request: | |
| branches: [main, master] | |
| paths: | |
| - ".github/workflows/docs.yml" | |
| - ".readthedocs.yaml" | |
| - "doc/**" | |
| - "usage.md" | |
| - "usage-*.md" | |
| - "scripting.md" | |
| - "res/icons/**" | |
| - "doc/gen/**" | |
| jobs: | |
| sphinx: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.13" | |
| - name: Install doc dependencies | |
| run: pip install -r doc/requirements.txt | |
| - name: Build HTML (warnings are errors; matches Read the Docs) | |
| run: sphinx-build -b html -W --keep-going doc doc/_build |