Skip to content

Update python support #45

Update python support

Update python support #45

Workflow file for this run

name: docs
on:
push:
paths:
- 'docs/**'
pull_request:
paths:
- 'docs/**'
jobs:
docs:
name: "Build docs"
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install wheel sphinx sphinx_rtd_theme
- name: Build docs
run: sphinx-build -W -b html docs/source docs/build