We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8deebf2 commit 832d14cCopy full SHA for 832d14c
.github/workflows/docs.yaml
@@ -0,0 +1,31 @@
1
+name: docs
2
+
3
+on:
4
+ pull_request:
5
+ paths:
6
+ - "docs/**"
7
+ - ".readthedocs.yml"
8
+ push:
9
+ branches: [main]
10
11
12
13
14
+jobs:
15
+ build:
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - uses: actions/checkout@v4
19
+ - uses: actions/setup-python@v5
20
+ with:
21
+ python-version: "3.11"
22
+ - name: Install dependencies
23
+ run: pip install -r docs/requirements-docs.txt
24
+ - name: Build docs
25
+ run: sphinx-build -W --keep-going -b html docs docs/_build/html
26
+ - uses: actions/upload-artifact@v4
27
+ if: always()
28
29
+ name: docs-html
30
+ path: docs/_build/html
31
+ retention-days: 7
0 commit comments