Skip to content

CI/CD

CI/CD #30

Workflow file for this run

name: Documentation
on:
push:
branches: [ main, docs ]
pull_request:
branches: [ main ]
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
version: "latest"
- name: Install dependencies
run: |
uv sync --extra docs
- name: Build documentation
run: |
cd docs
uv run sphinx-build -b html . _build/html
- name: Check for broken links
run: |
cd docs
uv run sphinx-build -b linkcheck . _build/linkcheck
continue-on-error: true
- name: Deploy to GitHub Pages
if: github.ref == 'refs/heads/main'
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/_build/html
force_orphan: true