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 @@ -111,12 +111,29 @@ jobs:
111111 VM-${{ matrix.platform }},
112112 Py-${{ steps.python-install.outputs.python-version }}
113113
114+ docs :
115+ runs-on : ubuntu-latest
116+ env :
117+ TOXENV : docs
118+ steps :
119+ - uses : actions/checkout@v3
120+ - name : Setup Python
121+ uses : actions/setup-python@v4
122+ with :
123+ python-version : ${{ matrix.python }}${{ matrix.dev }}
124+ - name : Install tox
125+ run : |
126+ python -m pip install tox
127+ - name : Run tests
128+ run : tox
129+
114130 check : # This job does nothing and is only used for the branch protection
115131 if : always()
116132
117133 needs :
118134 - integration-test
119135 - test
136+ - docs
120137 - test_cygwin
121138
122139 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 9393 jaraco.packaging >= 9
9494 rst.linker >= 1.9
9595 furo
96+ sphinx-lint
9697
9798 # tidelift
9899 jaraco.tidelift >= 1.4
Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ extras =
4040changedir = docs
4141commands =
4242 python -m sphinx -W --keep-going . {toxinidir}/build/html
43+ python -m sphinxlint
4344
4445[testenv:finalize]
4546skip_install = True
You can’t perform that action at this time.
0 commit comments