We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e41b8d commit 16ae9cbCopy full SHA for 16ae9cb
2 files changed
.github/workflows/ci.yaml
@@ -25,17 +25,22 @@ jobs:
25
26
test:
27
name: Python ${{ matrix.python }}
28
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
29
30
strategy:
31
matrix:
32
+ os:
33
+ - "ubuntu-latest"
34
python:
- - "3.6"
35
- "3.7"
36
- "3.8"
37
- "3.9"
38
- "3.10"
- - "pypy-3.6"
39
+ include:
40
+ - os: "ubuntu-20.04"
41
+ python: "3.6"
42
43
+ python: "pypy-3.6"
44
45
steps:
46
- uses: actions/checkout@v3
.pre-commit-config.yaml
@@ -9,7 +9,7 @@ repos:
9
hooks:
10
- id: flake8
11
- repo: https://github.com/pycqa/isort
12
- rev: 5.9.1
+ rev: 5.12.0
13
14
- id: isort
15
- repo: https://github.com/pre-commit/mirrors-mypy
0 commit comments