We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e57a794 commit a46fb09Copy full SHA for a46fb09
.github/workflows/ci-docs.yml
@@ -31,18 +31,18 @@ jobs:
31
create-args: >-
32
python=${{matrix.python-version}}
33
34
- - name: Render with pytest
35
- run: |
36
- pytest -v sphinx-build -b html -W . _build/html
37
-
38
- name: Build Sphinx documentation
39
working-directory: notebooks
40
run: |
41
pytest -v -n auto
42
+ - name: Build documentation with Sphinx
+ run: |
+ python -m sphinx -j 14 -b html -W . _build/html -v
+
43
- name: Upload HTML build (for PR inspection)
44
if: ${{ success() }}
45
uses: actions/upload-artifact@v4
46
with:
47
name: docs-html
48
- path: docs/_build/html
+ path: _build/html
0 commit comments