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 7ac8031 commit fd0d8b6Copy full SHA for fd0d8b6
.github/workflows/run-checks.yml
@@ -7,17 +7,27 @@ jobs:
7
runs-on: ubuntu-latest
8
strategy:
9
matrix:
10
- environment: ["py36", "py37", "flake8", "mypy"]
+ environment:
11
+ - "py36"
12
+ - "py37"
13
+ - "py38"
14
+ - "py39"
15
+ - "flake8"
16
+ - "mypy"
17
18
include:
19
- environment: "py36"
20
python: "3.6"
21
- environment: "py37"
22
python: "3.7"
23
+ - environment: "py38"
24
+ python: "3.8"
25
+ - environment: "py39"
26
+ python: "3.9"
27
- environment: "flake8"
- python: "3.7"
28
29
- environment: "mypy"
30
31
32
container:
33
image: python:${{ matrix.python }}
0 commit comments