Skip to content

v0.8.0: Comprehensive theory documentation overhaul #11

v0.8.0: Comprehensive theory documentation overhaul

v0.8.0: Comprehensive theory documentation overhaul #11

Workflow file for this run

name: Documentation
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
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 dependencies
run: |
python -m pip install --upgrade pip
pip install -r docs/requirements.txt
pip install -e .
- name: Build documentation
run: |
cd docs
make html
- name: Check for broken links
run: |
cd docs
make linkcheck
continue-on-error: true