Skip to content

Commit aab3a4e

Browse files
dario-cosciandem0
authored andcommitted
modify doc workflows
1 parent 23705e6 commit aab3a4e

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

.github/workflows/sphinx-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Create the new documentation
1515
uses: ammaraskar/[email protected]
1616
with:
17-
pre-build-command: "python3 -m pip install .[docs]"
17+
pre-build-command: "python3 -m pip install .[doc]"
1818
docs-folder: "docs/"
1919

2020
- name: Deploy

.github/workflows/testing_doc.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,10 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v4
1616

17-
- name: Checkout Doc
18-
uses: ammaraskar/[email protected]
19-
with:
20-
pre-build-command: "python3 -m pip install .[doc]"
21-
build-command: "make html SPHINXOPTS='-W'"
22-
docs-folder: "docs/"
17+
- name: Install Python dependencies
18+
run: python3 -m pip install .[doc]
19+
20+
- name: Build Documentation
21+
run: |
22+
make html SPHINXOPTS+='-W'
23+
working-directory: docs/

0 commit comments

Comments
 (0)