Skip to content

Commit 592eb5e

Browse files
committed
ensure ci for 3.6 runs on older ubuntu version that still supports 3.6 installation
Signed-off-by: oleg.hoefling <[email protected]>
1 parent 437e114 commit 592eb5e

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/tests.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,14 @@ on:
88

99
jobs:
1010
build:
11-
12-
runs-on: ubuntu-latest
1311
strategy:
1412
matrix:
15-
python-version: [3.6, 3.7, 3.8, 3.9, '3.10', '3.11']
16-
13+
os: ubuntu-latest
14+
python-version: [3.7, 3.8, 3.9, '3.10', '3.11']
15+
include:
16+
- os: ubuntu-20.04
17+
python-version: 3.6
18+
runs-on: ${{ matrix.os }}
1719
steps:
1820
- uses: actions/checkout@v2
1921
- name: Set up Python ${{ matrix.python-version }}

0 commit comments

Comments
 (0)