File tree 3 files changed +19
-0
lines changed
3 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -80,11 +80,28 @@ jobs:
80
80
- name : Run tests
81
81
run : tox
82
82
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
+
83
99
check : # This job does nothing and is only used for the branch protection
84
100
if : always()
85
101
86
102
needs :
87
103
- test
104
+ - docs
88
105
89
106
runs-on : ubuntu-latest
90
107
Original file line number Diff line number Diff line change 60
60
jaraco.packaging >= 9
61
61
rst.linker >= 1.9
62
62
furo
63
+ sphinx-lint
63
64
jaraco.tidelift >= 1.4
64
65
65
66
# local
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ extras =
23
23
changedir = docs
24
24
commands =
25
25
python -m sphinx -W --keep-going . {toxinidir}/build/html
26
+ python -m sphinxlint
26
27
27
28
[testenv:diffcov]
28
29
deps =
You can’t perform that action at this time.
0 commit comments