Skip to content

Write a first MVP for generating structured tutorials #8

Write a first MVP for generating structured tutorials

Write a first MVP for generating structured tutorials #8

Workflow file for this run

name: Documentation
on:
push:
pull_request:
env:
UV_PYTHON_PREFERENCE: only-system
UV_NO_SYNC: 1
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Acquire sources
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Setup Python
uses: actions/[email protected]
with:
python-version: "3.14"
architecture: x64
- name: Install uv
uses: astral-sh/[email protected]
with:
enable-cache: true
- name: Install dependencies
run: uv sync
- name: doc8 style checks
run: uv run doc8 docs/
- name: Generate documentation
run: uv run make -C docs html
- name: Spelling
run: uv run make -C docs spelling