Skip to content

Commit 939cc46

Browse files
committed
Add additional Python versions to build matrix
1 parent 273fd28 commit 939cc46

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/build.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,32 @@ jobs:
1616
strategy:
1717
matrix:
1818
name: [
19+
"ubuntu-py27",
1920
"ubuntu-py37",
21+
"ubuntu-py38",
2022
"ubuntu-py39",
23+
"ubuntu-py310",
24+
"ubuntu-py311",
2125
]
2226
include:
27+
- name: "ubuntu-py27"
28+
os: ubuntu-latest
29+
python-version: 2.7
2330
- name: "ubuntu-py37"
2431
os: ubuntu-latest
2532
python-version: 3.7
33+
- name: "ubuntu-py38"
34+
os: ubuntu-latest
35+
python-version: 3.8
2636
- name: "ubuntu-py39"
2737
os: ubuntu-latest
2838
python-version: 3.9
39+
- name: "ubuntu-py310"
40+
os: ubuntu-latest
41+
python-version: 3.10
42+
- name: "ubuntu-py311"
43+
os: ubuntu-latest
44+
python-version: 3.11
2945
steps:
3046
- uses: actions/checkout@v3
3147
- name: Set up Python ${{ matrix.python-version }}

0 commit comments

Comments
 (0)