We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05b69cf commit 8381e90Copy full SHA for 8381e90
.github/workflows/ci.yaml
@@ -35,10 +35,9 @@ jobs:
35
with:
36
python-version: ${{ matrix.python }}
37
- name: Install dependencies
38
- run: python -m pip install tox
+ run: python -m pip install tox tox-gh-actions
39
- name: Run unit tests (via tox)
40
- # Run tox using the version of Python in `PATH`
41
- run: tox -e py
+ run: tox
42
docs:
43
name: Build docs
44
runs-on: ubuntu-latest
tox.ini
@@ -36,5 +36,13 @@ commands =
commands =
sphinx-build -Wn -b html -d docs/_build/doctrees docs docs/_build/html
+[gh-actions]
+python =
+ 3.8: py38
+ 3.9: py39
+ 3.10: py310
+ 3.11: py311
45
+ 3.12: py312
46
+
47
[coverage:run]
48
branch = True
0 commit comments