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 88c609f commit 832ca42Copy full SHA for 832ca42
.github/workflows/package.yml
@@ -27,7 +27,9 @@ jobs:
27
- name: Install dependencies
28
run: poetry install --with dev
29
- name: Check linters for failure
30
- run: poetry run tox -echeck
+ run: |
31
+ poetry run pip install tox-gh-actions
32
+ poetry run tox -echeck
33
- name: Upload code coverage
34
uses: codecov/codecov-action@v2
35
with:
tox.ini
@@ -4,11 +4,11 @@ envlist =
4
py{38, 39, 310, 311}
5
check
6
7
-[github-actions]
+[gh-actions]
8
python =
9
3.8: py38
10
3.9: py39
11
- 3.10: py310
+ 3.10: py310, mypy, check
12
3.11: py311
13
14
[testenv]
0 commit comments