Skip to content

Commit a46fb09

Browse files
committed
fix CI
1 parent e57a794 commit a46fb09

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci-docs.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,18 +31,18 @@ jobs:
3131
create-args: >-
3232
python=${{matrix.python-version}}
3333
34-
- name: Render with pytest
35-
run: |
36-
pytest -v sphinx-build -b html -W . _build/html
37-
3834
- name: Build Sphinx documentation
3935
working-directory: notebooks
4036
run: |
4137
pytest -v -n auto
4238
39+
- name: Build documentation with Sphinx
40+
run: |
41+
python -m sphinx -j 14 -b html -W . _build/html -v
42+
4343
- name: Upload HTML build (for PR inspection)
4444
if: ${{ success() }}
4545
uses: actions/upload-artifact@v4
4646
with:
4747
name: docs-html
48-
path: docs/_build/html
48+
path: _build/html

0 commit comments

Comments
 (0)