Skip to content

Added automatic documentation tests on PRs #1

Added automatic documentation tests on PRs

Added automatic documentation tests on PRs #1

Workflow file for this run

name: Test Documentation Build
on:
push:
branches: [add_docs_testing] # for testing
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
pip install -e .
pip install sphinx
pip install pydata-sphinx-theme
- name: Sphinx build
run: |
cd docs
make html