Skip to content

Commit d195b9f

Browse files
committed
docs: Warnings as errors
1 parent 7c22cc7 commit d195b9f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ jobs:
4848
# CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
4949

5050
- name: Check documentation spelling
51-
run: make spelling
51+
run: make spelling SPHINXOPTS="-W --keep-going"
5252
working-directory: ./doc
5353

5454
- name: Check documentation coverage
55-
run: make coverage
55+
run: make coverage SPHINXOPTS="-W --keep-going"
5656
working-directory: ./doc
5757

5858
- name: Archive documentation coverage results

doc/make-html.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ python3 -m pip uninstall -y shell-logger
77
cd ..
88
python3 -m pip install .
99
cd "${SCRIPT_DIR}" || exit 1
10-
make html
10+
make html SPHINXOPTS="-W --keep-going"
1111
cd "${ORIG_DIR}" || exit 1

0 commit comments

Comments
 (0)