We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3515187 commit 57cd387Copy full SHA for 57cd387
.github/workflows/tests.yml
@@ -11,22 +11,28 @@ on:
11
jobs:
12
tests-ubuntu:
13
name: "Test: py${{ matrix.python-version }}, Ubuntu"
14
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
15
strategy:
16
fail-fast: false
17
matrix:
18
include:
19
- python-version: '3.6'
20
+ os: ubuntu-20.04
21
tox-env: min
22
23
24
tox-env: py
25
- python-version: '3.7'
26
+ os: ubuntu-latest
27
28
- python-version: '3.8'
29
30
31
- python-version: '3.9'
32
33
34
- python-version: '3.10'
35
36
37
38
steps:
0 commit comments