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 @@ -72,11 +72,28 @@ jobs:
72
72
- name : Run tests
73
73
run : tox
74
74
75
+ docs :
76
+ runs-on : ubuntu-latest
77
+ env :
78
+ TOXENV : docs
79
+ steps :
80
+ - uses : actions/checkout@v3
81
+ - name : Setup Python
82
+ uses : actions/setup-python@v4
83
+ with :
84
+ python-version : ${{ matrix.python }}${{ matrix.dev }}
85
+ - name : Install tox
86
+ run : |
87
+ python -m pip install tox
88
+ - name : Run tests
89
+ run : tox
90
+
75
91
check : # This job does nothing and is only used for the branch protection
76
92
if : always()
77
93
78
94
needs :
79
95
- test
96
+ - docs
80
97
81
98
runs-on : ubuntu-latest
82
99
Original file line number Diff line number Diff line change 52
52
jaraco.packaging >= 9
53
53
rst.linker >= 1.9
54
54
furo
55
+ sphinx-lint
55
56
56
57
# local
57
58
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ extras =
20
20
changedir = docs
21
21
commands =
22
22
python -m sphinx -W --keep-going . {toxinidir}/build/html
23
+ python -m sphinxlint
23
24
24
25
[testenv:release]
25
26
skip_install = True
You can’t perform that action at this time.
0 commit comments