Skip to content

UI improvements: shape delete, options scroll, inspection ortho #6

UI improvements: shape delete, options scroll, inspection ortho

UI improvements: shape delete, options scroll, inspection ortho #6

Workflow file for this run

# 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