Skip to content

docs(changelog): note Plan 9 — CREATE+EDIT closure (53% → 96%) #2530

docs(changelog): note Plan 9 — CREATE+EDIT closure (53% → 96%)

docs(changelog): note Plan 9 — CREATE+EDIT closure (53% → 96%) #2530

Workflow file for this run

name: docs
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: '3.12'
- name: Install docs dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements-docs.txt ]; then pip install -r requirements-docs.txt; else pip install .[docs]; fi
- name: Generate API reference docs
run: python scripts/gen_reference_docs.py
- name: Build docs
run: mkdocs build --strict
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v5
with:
path: site
deploy:
if: github.event_name == 'push'
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v5