Skip to content

even more imports

even more imports #29

Workflow file for this run

# Build documentation with warnings treated as errors
name: Build docs
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Set up Python 3.13
uses: actions/setup-python@v7
with:
python-version: "3.13"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[docs]
# Install pandoc for notebook conversion
sudo apt-get update && sudo apt-get install -y pandoc 2>&1 | tail -5
- name: Build docs
run: |
cd doc
make html