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 c513769 commit bcea39bCopy full SHA for bcea39b
1 file changed
.github/workflows/tests.yml
@@ -31,7 +31,7 @@ jobs:
31
runs-on: "ubuntu-latest"
32
strategy:
33
matrix:
34
- toxenv: ["build", "pytype"]
+ toxenv: ["build", "pytype", "docs"]
35
env:
36
TOXENV: ${{ matrix.toxenv }}
37
@@ -47,4 +47,8 @@ jobs:
47
python -m pip install --upgrade tox
48
- name: Run action
49
run: |
50
- tox
+ if [[ $TOXENV == "docs" ]]; then
51
+ tox -- -j auto -bhtml -W -n -a --keep-going
52
+ else
53
+ tox
54
+ fi
0 commit comments