Add python 3.11, 3.12 and drop 3.8 and 3.9 #89
Workflow file for this run
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 docs | |
on: | |
push: | |
branches: ["main"] | |
tags: | |
- "v*.*.*" | |
pull_request: | |
branches: ["main"] | |
jobs: | |
generate-docs: | |
name: "Build package documentation" | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "Checkout tag/branch" | |
uses: "actions/checkout@v3" | |
with: { fetch-depth: 0, submodules: "true" } | |
- name: "Setup Python" | |
uses: "actions/setup-python@v3" | |
with: | |
python-version: "3.11" | |
- name: "Install build dependencies" | |
run: | | |
set -xe | |
python -VV | |
python -m site | |
python -m pip install --upgrade pip setuptools wheel | |
python -m pip install git+https://github.com/zhinst/zhinst-toolkit | |
python -m pip install --upgrade -r requirements.txt | |
python -m pip install --upgrade -r docs/requirements.txt | |
pip install . | |
- name: "Build docs" | |
run: | | |
wget https://github.com/jgm/pandoc/releases/download/2.18/pandoc-2.18-1-amd64.deb | |
sudo dpkg -i pandoc-2.18-1-amd64.deb | |
cd docs && make html EXAMPLE_SRC=remote | |
- name: Store artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: docs | |
path: docs/build/html | |
- name: "Test spelling docs" | |
run: | | |
cd docs && sphinx-build -b spelling -W --keep-going source build/spelling |