Skip to content

Extract receiver-core projection/batching primitives and unify Fiji/N… #27

Extract receiver-core projection/batching primitives and unify Fiji/N…

Extract receiver-core projection/batching primitives and unify Fiji/N… #27

Workflow file for this run

name: Documentation
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[docs]"
- name: Build documentation
run: |
cd docs
make html
- name: Check for broken links
run: |
cd docs
make linkcheck
continue-on-error: true
- name: Upload documentation artifacts
uses: actions/upload-artifact@v4
if: always()
with:
name: documentation
path: docs/build/html/
retention-days: 7