We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6bd39ba commit c4560daCopy full SHA for c4560da
.github/workflows/pythonpackage.yml
@@ -37,3 +37,19 @@ jobs:
37
uses: codecov/codecov-action@v4
38
with:
39
token: ${{ secrets.CODECOV_TOKEN }}
40
+
41
+ docs:
42
+ runs-on: ubuntu-latest
43
+ steps:
44
+ - uses: actions/checkout@v4
45
+ - uses: actions/setup-python@v5
46
+ with:
47
+ python-version: 3.12
48
+ cache: 'pip'
49
+ cache-dependency-path: |
50
+ 'pyproject.toml'
51
+ 'doc/requirements.txt'
52
+ - name: Install dependencies
53
+ run: python3 -m pip install -r doc/requirements.txt -e .
54
+ - name: Build docs
55
+ run: make -C doc html
doc/requirements.txt
@@ -1,3 +1,3 @@
1
-sphinx
2
-sphinx-autodoc-typehints
3
-furo
+sphinx~=7.3
+sphinx-autodoc-typehints~=2.2
+furo~=2024.5
0 commit comments