Skip to content

Bump actions/setup-python from 4 to 5 (#428) #263

Bump actions/setup-python from 4 to 5 (#428)

Bump actions/setup-python from 4 to 5 (#428) #263

Workflow file for this run

# Build html docs. Any warning building the docs will produce an error.
name: Build docs
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: |
pip install .
pip install -r docs/requirements.txt
- name: Test build html
run: |
cd docs
make html SPHINXOPTS="-W"