Skip to content

Bump version: 0.3.0 → 1.0.0 #36

Bump version: 0.3.0 → 1.0.0

Bump version: 0.3.0 → 1.0.0 #36

Workflow file for this run

# Copied almost verbatim from https://github.com/marketplace/actions/sphinx-build
name: sphinx
on:
- push
jobs:
docs_build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: '3.10'
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