Skip to content

Feature/online help (#3) #34

Feature/online help (#3)

Feature/online help (#3) #34

Workflow file for this run

# Copied almost verbatim from https://github.com/marketplace/actions/sphinx-build
name: sphinx
on:
- push
jobs:
docs:
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip' # caching pip dependencies
- run: pip install -r docs/requirements.txt
- run: cd docs && make html
- uses: actions/upload-artifact@v3
with:
name: DocumentationHTML
path: docs/build/html/
retention-days: 30