Skip to content

Commit 225e301

Browse files
authored
Merge pull request #29 from hackebrot/run-ci-checks-on-newer-python-envs
Run CI checks on newer Python envs 🤖
2 parents 01bfae1 + fd0d8b6 commit 225e301

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

.github/workflows/run-checks.yml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,27 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
environment: ["py36", "py37", "flake8", "mypy"]
10+
environment:
11+
- "py36"
12+
- "py37"
13+
- "py38"
14+
- "py39"
15+
- "flake8"
16+
- "mypy"
1117

1218
include:
1319
- environment: "py36"
1420
python: "3.6"
1521
- environment: "py37"
1622
python: "3.7"
23+
- environment: "py38"
24+
python: "3.8"
25+
- environment: "py39"
26+
python: "3.9"
1727
- environment: "flake8"
18-
python: "3.7"
28+
python: "3.9"
1929
- environment: "mypy"
20-
python: "3.7"
30+
python: "3.9"
2131

2232
container:
2333
image: python:${{ matrix.python }}

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py36,py37,mypy,flake8
2+
envlist = py36,py37,py38,py39,mypy,flake8
33

44
[testenv]
55
deps =

0 commit comments

Comments
 (0)