Skip to content

Fix config for 3rd device in valid range test #12

Fix config for 3rd device in valid range test

Fix config for 3rd device in valid range test #12

Workflow file for this run

name: CI - Docs Build
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
build-docs:
name: Build Sphinx Docs
runs-on: ubuntu-latest
if: |
github.event_name == 'push' ||
(
github.event_name == 'pull_request' &&
github.repository != github.event.pull_request.head.repo.full_name
)
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12.8'
- name: Install documentation dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[docs]"
- name: Build docs
run: |
cd docs
make html SPHINXOPTS="-W --keep-going"