Skip to content

Commit 2029dcc

Browse files
committed
Force Ubuntu 20 for 3.6 test runs (3.6 is EOL in Ubuntu latest)
1 parent ddd2aef commit 2029dcc

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,15 @@ on: [push]
44

55
jobs:
66
build:
7-
runs-on: ubuntu-latest
7+
runs-on: ${{ matrix.os }}
88

99
strategy:
1010
matrix:
11-
python-version: [3.6, 3.7, 3.8, 3.9]
11+
python-version: [3.7, 3.8, 3.9]
12+
os: [ubuntu-latest]
13+
include:
14+
- python-version: 3.6
15+
os: ubuntu-20.04
1216

1317
steps:
1418
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)