Skip to content

Commit 832ca42

Browse files
committed
Use tox-gh-actions
1 parent 88c609f commit 832ca42

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/package.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ jobs:
2727
- name: Install dependencies
2828
run: poetry install --with dev
2929
- name: Check linters for failure
30-
run: poetry run tox -echeck
30+
run: |
31+
poetry run pip install tox-gh-actions
32+
poetry run tox -echeck
3133
- name: Upload code coverage
3234
uses: codecov/codecov-action@v2
3335
with:

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ envlist =
44
py{38, 39, 310, 311}
55
check
66

7-
[github-actions]
7+
[gh-actions]
88
python =
99
3.8: py38
1010
3.9: py39
11-
3.10: py310
11+
3.10: py310, mypy, check
1212
3.11: py311
1313

1414
[testenv]

0 commit comments

Comments
 (0)