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 6f44315 commit 5466f2eCopy full SHA for 5466f2e
.github/workflows/test.yml
@@ -11,14 +11,20 @@ name: Build & Test
11
workflow_dispatch:
12
jobs:
13
build:
14
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.os }}
15
strategy:
16
matrix:
17
python-version:
18
- 3.6
19
- 3.7
20
- 3.8
21
- 3.9
22
+ include:
23
+ - os: "ubuntu-latest"
24
+ # There is no build for Python 3.6 in ubuntu>20.04.
25
+ # This unclude can be removed when we drop support for Python 3.6.
26
+ - os: "ubuntu-20.04"
27
+ python-version: "3.6"
28
steps:
29
- uses: actions/checkout@v2
30
with:
0 commit comments