Skip to content

UI polish: sketch snap, sketch/shape list UX, grid settings, docs (#112) #10

UI polish: sketch snap, sketch/shape list UX, grid settings, docs (#112)

UI polish: sketch snap, sketch/shape list UX, grid settings, docs (#112) #10

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