documentation updates #10
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: Docs | |
on: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
name: Docs | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Fetch all tags and branches | |
run: git fetch --prune --unshallow | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
run: pip install .[dev] && pip install -r docs/requirements.txt | |
- name: Generate Sphinx HTML | |
run: cd docs && make html |