Skip to content

Commit 5466f2e

Browse files
authored
Update test.yml
Updating ubuntu os version for python 3.6
1 parent 6f44315 commit 5466f2e

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,20 @@ name: Build & Test
1111
workflow_dispatch:
1212
jobs:
1313
build:
14-
runs-on: ubuntu-latest
14+
runs-on: ${{ matrix.os }}
1515
strategy:
1616
matrix:
1717
python-version:
1818
- 3.6
1919
- 3.7
2020
- 3.8
2121
- 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"
2228
steps:
2329
- uses: actions/checkout@v2
2430
with:

0 commit comments

Comments
 (0)