There was an error while loading. Please reload this page.
2 parents 6cd62f6 + 10488e6 commit 5e7f53dCopy full SHA for 5e7f53d
.github/workflows/pytest.yml
@@ -3,6 +3,18 @@ on: [push, pull_request]
3
4
jobs:
5
test:
6
+ strategy:
7
+ fail-fast: false
8
+ matrix:
9
+ include:
10
+ - {name: 'CPython 3.7', python: '3.7'}
11
+ - {name: 'CPython 3.8', python: '3.8'}
12
+ - {name: 'CPython 3.9', python: '3.9'}
13
+ - {name: 'CPython 3.10', python: '3.10'}
14
+ - {name: 'Pypy 3.7', python: 'pypy-3.7'}
15
+ - {name: 'Pypy 3.8', python: 'pypy-3.8'}
16
+ - {name: 'Pypy 3.9', python: 'pypy-3.9'}
17
+ name: ${{ matrix.name }}
18
runs-on: ubuntu-latest
19
timeout-minutes: 2
20
@@ -13,7 +25,7 @@ jobs:
25
- name: Setup Python
26
uses: actions/setup-python@v2
27
with:
- python-version: "3.7"
28
+ python-version: ${{ matrix.python }}
29
30
- name: Run database server in docker
31
run: |
0 commit comments