Skip to content

Commit db741a6

Browse files
authored
Merge pull request #107 from GeckoRobotics/add-python-versions-to-gha
Add additional Python 3 versions to GitHub Actions matrix
2 parents 273fd28 + 9c81ec5 commit db741a6

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

.github/workflows/build.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,27 @@ jobs:
1717
matrix:
1818
name: [
1919
"ubuntu-py37",
20+
"ubuntu-py38",
2021
"ubuntu-py39",
22+
"ubuntu-py310",
23+
"ubuntu-py311",
2124
]
2225
include:
2326
- name: "ubuntu-py37"
2427
os: ubuntu-latest
25-
python-version: 3.7
28+
python-version: "3.7"
29+
- name: "ubuntu-py38"
30+
os: ubuntu-latest
31+
python-version: "3.8"
2632
- name: "ubuntu-py39"
2733
os: ubuntu-latest
28-
python-version: 3.9
34+
python-version: "3.9"
35+
- name: "ubuntu-py310"
36+
os: ubuntu-latest
37+
python-version: "3.10"
38+
- name: "ubuntu-py311"
39+
os: ubuntu-latest
40+
python-version: "3.11"
2941
steps:
3042
- uses: actions/checkout@v3
3143
- name: Set up Python ${{ matrix.python-version }}

0 commit comments

Comments
 (0)