Skip to content

Test docs

Test docs #5

Workflow file for this run

name: Build and test documentation
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
test_docs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: "3.12"
cache: "pip"
- name: Install dependencies
run: pip install -e .[docs] pytest-md
- name: Build docs
working-directory: docs
env:
SPHINXOPTS: "-W --keep-going"
run: make html