docs workflow

This commit is contained in:
Wes Barnett 2021-03-11 19:54:50 -05:00
parent 914ba1abcf
commit a93c96fae6
No known key found for this signature in database
GPG key ID: 1070BCC98C18BD66

22
.github/workflows/docs.yml vendored Normal file
View file

@ -0,0 +1,22 @@
name: Docs
on:
push:
branches:
- gh-pages
pull_request:
branches:
- gh-pages
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Python
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install dependencies
run: python -m pip install --upgrade pip sphinx
- name: Build docs
run: sphinx-build source docs