Skip to content

Async/Sync Tests Rewrite #335

Async/Sync Tests Rewrite

Async/Sync Tests Rewrite #335

Workflow file for this run

# This workflow builds the Sphinx documentation, and in doing so - checks for errors in the documentation.
name: Docs
on:
push:
pull_request:
types: [ opened, reopened, synchronize ]
workflow_dispatch:
jobs:
docs:
name: Test Docs
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python 3.8
uses: actions/setup-python@v5
with:
python-version: "3.8"
cache: "pip" # Cache the pip packages to speed up the workflow
- name: Install Dependencies and Package
run: |
python -m pip install -U pip setuptools
pip install -U -r requirements.txt
pip install -e .[docs]
- name: Build Documentation
run: |
cd docs
sphinx-build -b html -j auto -a -n -T -W --keep-going . _build/html