Skip to content

WIP/PoC: setting up sphinx website #1

WIP/PoC: setting up sphinx website

WIP/PoC: setting up sphinx website #1

Workflow file for this run

name: Deploy-docs
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install deps
run: |
python3 -m pip install -U pip
python3 -m pip install -e ".[docs]"
- name: Build docs (warnings as errors)
run: |
python3 -m sphinx -b html docs docs/_build/html
- name: Upload HTML artifact
uses: actions/upload-artifact@v4
with:
name: docs-html
path: docs/_build/html