Bump python from 3.12.7 to 3.12.8 #111
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Documentation | |
on: | |
pull_request: | |
branches: | |
- master | |
workflow_dispatch: | |
permissions: {} | |
jobs: | |
build-documentation: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/[email protected] | |
- name: Install Python | |
uses: actions/[email protected] | |
with: | |
cache: 'pip' | |
check-latest: true | |
python-version: '3.12' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip setuptools wheel | |
pip install -r requirements-docs.txt | |
- name: Build documentation | |
env: | |
SPHINXOPTS: -T -W --keep-going | |
run: make -C docs html |