18 lines
355 B
YAML
18 lines
355 B
YAML
|
name: Build Docs
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ main ]
|
||
|
pull_request:
|
||
|
branches: [ main ]
|
||
|
|
||
|
jobs:
|
||
|
docs:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v4
|
||
|
- uses: ammaraskar/sphinx-action@0.4
|
||
|
with:
|
||
|
docs-folder: "docs/"
|
||
|
pre-build-command: pip install -U sphinx sphinx-rtd-theme
|