File tree Expand file tree Collapse file tree 3 files changed +19
-0
lines changed
Expand file tree Collapse file tree 3 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -80,11 +80,28 @@ jobs:
8080 - name : Run tests
8181 run : tox
8282
83+ docs :
84+ runs-on : ubuntu-latest
85+ env :
86+ TOXENV : docs
87+ steps :
88+ - uses : actions/checkout@v3
89+ - name : Setup Python
90+ uses : actions/setup-python@v4
91+ with :
92+ python-version : ${{ matrix.python }}${{ matrix.dev }}
93+ - name : Install tox
94+ run : |
95+ python -m pip install tox
96+ - name : Run tests
97+ run : tox
98+
8399 check : # This job does nothing and is only used for the branch protection
84100 if : always()
85101
86102 needs :
87103 - test
104+ - docs
88105
89106 runs-on : ubuntu-latest
90107
Original file line number Diff line number Diff line change 6060jaraco.packaging >= 9
6161rst.linker >= 1.9
6262furo
63+ sphinx-lint
6364jaraco.tidelift >= 1.4
6465
6566# local
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ extras =
2323changedir = docs
2424commands =
2525python -m sphinx -W --keep-going . {toxinidir}/build/html
26+ python -m sphinxlint
2627
2728[testenv:diffcov]
2829deps =
You can’t perform that action at this time.
0 commit comments