Skip to content

Commit

Permalink
Add GitHub action to ensure docs are correctly built
Browse files Browse the repository at this point in the history
Signed-off-by: Rodrigo Tobar <[email protected]>
  • Loading branch information
rtobar committed Sep 14, 2023
1 parent e1d904a commit 6176d6f
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Build documentation
on: [push, pull_request]
env:
SPHINXOPTS: -W --keep going

jobs:
build-docs:
name: Build documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ammaraskar/sphinx-action@master
with:
docs-folder: "doc"
pre-build-command: 'pip install sphinx_rtd_theme'

0 comments on commit 6176d6f

Please sign in to comment.