Skip to content

Commit

Permalink
Enable simple check that sphinx docs build
Browse files Browse the repository at this point in the history
Only checks exit status so can not check for warnings.
  • Loading branch information
timj committed Jun 13, 2020
1 parent 7dd67ae commit 9d9f20f
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/sphinx.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Do quick check of Sphinx documentation build

on:
- push
- pull_request

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.7

- name: Install
run: pip install documenteer[pipelines]

- name: Build the Sphinx documentation
working-directory: ./doc
run: package-docs build

0 comments on commit 9d9f20f

Please sign in to comment.