We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a8685e commit c9644d0Copy full SHA for c9644d0
.github/workflows/build-docs.yaml
@@ -59,6 +59,7 @@ jobs:
59
60
- name: deploy website
61
uses: JamesIves/[email protected]
62
+ if: ${{ github.ref != 'refs/heads/dev' }}
63
with:
64
branch: gh-pages
65
folder: docs/build/html/
Makefile
@@ -29,6 +29,10 @@ sync:
29
.PHONY: docs
30
docs:
31
$(poetry) sphinx-apidoc -e -E -f --remove-old -o docs/source/apiref autointent
32
+ $(poetry) python -m sphinx build -b html docs/source docs/build/html
33
+
34
+.PHONY: test-docs
35
+test-docs: docs
36
$(poetry) python -m sphinx build -b doctest docs/source docs/build/html
37
38
.PHONY: serve-docs
0 commit comments