Skip to content

Fix method call for reverse_zeropoint #50

Fix method call for reverse_zeropoint

Fix method call for reverse_zeropoint #50

Workflow file for this run

name: Check Documentation Build
on:
pull_request:
paths:
- 'docs/**'
- 'aion/**'
- '.github/workflows/docs-check.yml'
- 'pyproject.toml'
jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
uv sync --all-extras --dev
- name: Build documentation
run: |
cd docs
uv run sphinx-build -W -b html . _build/html
- name: Check for broken links
run: |
cd docs
uv run sphinx-build -b linkcheck . _build/linkcheck || true