Skip to content

Documentation tests #1694

Documentation tests

Documentation tests #1694

Workflow file for this run

name: test-docs
run-name: Documentation tests
on:
pull_request:
push:
branches: [main]
permissions:
contents: read
env:
PIPX_HOME: ${{ github.workspace }}/.pipx
HATCH_ENV_TYPE_VIRTUAL_PATH: ${{ github.workspace }}/.hatch_envs
jobs:
doc-test:
name: Sphinx Documentation Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.x'
cache: 'pip'
- name: Cache pipx environments
uses: actions/cache@v3
with:
path: ${{ github.workspace }}/.pipx
# pipx is creating a cachedir.tag with unique
key: pipx-home-${{ hashFiles('.pipx/venvs/hatch/pyvenv.cfg') }}
restore-keys: |
pipx-home-
- name: Make sure latest hatch is installed
run: pipx upgrade hatch || pipx install hatch
- name: Cache Hatch environments
uses: actions/cache@v3
with:
path: ${{ github.workspace }}/.hatch_envs
# hatch envs are described in pyproject.toml
key: hatch-envs-${{ hashFiles('pyproject.toml') }}
restore-keys: |
hatch-envs-
- name: Run sphinx html builder
# -W = warnings as error
run: hatch run docs:html -W
- name: Run sphinx linkcheck
run: hatch run docs:linkcheck