We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8f89794 + 68acc9f commit e737021Copy full SHA for e737021
2 files changed
.github/workflows/ci.yml
@@ -27,7 +27,7 @@ jobs:
27
strategy:
28
matrix:
29
pyversion:
30
- - '3.6'
+ - '3.8'
31
- '3.10'
32
- '3.12'
33
steps:
@@ -52,3 +52,16 @@ jobs:
52
pip install tox
53
- name: Run linters
54
run: tox -e lint || true
55
+
56
+ doc:
57
+ runs-on: ubuntu-latest
58
+ needs: build
59
+ steps:
60
+ - uses: actions/checkout@v4
61
+ - uses: actions/setup-python@v5
62
+ with:
63
+ python-version: '3.10'
64
+ - run: |
65
+ pip install tox
66
+ - name: Run linters
67
+ run: tox -e doc
tox.ini
@@ -52,7 +52,10 @@ commands =
[testenv:doc]
-extras = doc
+description = generate sphinx documentation
+extras =
+ doc
+ protoc
allowlist_externals =
{toxinidir}/genproto.sh
commands =
0 commit comments