Skip to content

Update docs and examples #336

Update docs and examples

Update docs and examples #336

Workflow file for this run

name: Docs
on:
pull_request:
branches: ['main']
types: [opened, reopened, ready_for_review, synchronize]
workflow_dispatch:
jobs:
build:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: pip
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install -e '.[docs]'
- name: Build docs
run: |
sphinx-build -W -b html docs docs/build/html