Skip to content

Commit ca97f05

Browse files
committed
ci(docs): add sphinx dependencies to workflow
Add necessary Sphinx dependencies to the GitHub Actions workflow to ensure documentation can be built successfully.
1 parent c8dbae3 commit ca97f05

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/build.yml

+7
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,13 @@ jobs:
2020
with:
2121
python-version: 3.12
2222

23+
- name: Install dependencies
24+
run: |
25+
pip install sphinx
26+
pip install sphinx-rtd-theme
27+
pip install sphinx-autodoc-typehints
28+
pip install myst-parser
29+
2330
- name: Build Sphinx documentation
2431
run: |
2532
sphinx-build -b html docs build

0 commit comments

Comments
 (0)