Skip to content

Commit 14850e4

Browse files
Use 'ubuntu-20.04' to test against Python 3.6
Co-authored-by: Seth Michael Larson <seth.larson@elastic.co>
1 parent 9ecf733 commit 14850e4

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
steps:
2525
- name: Checkout Repository
2626
uses: actions/checkout@v3
27-
- name: Set up Python 3.7
27+
- name: Set up Python 3.x
2828
uses: actions/setup-python@v4
2929
with:
3030
python-version: 3.x
@@ -38,15 +38,21 @@ jobs:
3838
strategy:
3939
fail-fast: false
4040
matrix:
41-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
41+
python-version: ["3.7", "3.8", "3.9", "3.10"]
4242
experimental: [false]
4343
nox-session: [""]
44+
runs-on: ["ubuntu-latest"]
4445
include:
46+
- python-version: 3.6
47+
experimental: false
48+
nox-session: test-3.6
49+
runs-on: "ubuntu-20.04"
4550
- python-version: 3.11-dev
4651
experimental: true
4752
nox-session: test-3.11
53+
runs-on: "ubuntu-latest"
4854

49-
runs-on: ubuntu-latest
55+
runs-on: ${{ matrix.runs-on }}
5056
name: test-${{ matrix.python-version }}
5157
continue-on-error: ${{ matrix.experimental }}
5258
steps:

0 commit comments

Comments
 (0)