We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 113dcb3 commit 8db59f5Copy full SHA for 8db59f5
.github/workflows/doc.yml
@@ -20,20 +20,26 @@ jobs:
20
steps:
21
- name: Checkout code
22
uses: actions/checkout@v4
23
-
+
24
- name: Setup python binary
25
uses: actions/setup-python@v5
26
with:
27
python-version: '3'
28
cache: 'pip'
29
cache-dependency-path: 'doc/requirements.txt'
30
31
- name: Install dependencies
32
run: pip install -r doc/requirements.txt
33
34
+ - name: Add sphinx-build problem matcher
35
+ uses: sphinx-doc/[email protected]
36
37
+ - name: Add sphinx-lint problem matcher
38
+ uses: rffontenelle/[email protected]
39
40
- name: Build docs
41
run: make -C doc html O='--keep-going --fail-on-warning --nitpicky'
42
43
- name: Lint docs
44
if: always()
45
run: sphinx-lint doc/
0 commit comments