Skip to content

Commit d829f4b

Browse files
committed
Rework CI so that we can also easily test Python 3.5
1 parent cb0a78c commit d829f4b

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/ci.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,15 @@ jobs:
66
strategy:
77
matrix:
88
python-version:
9+
- "3.5" # Found on Ubuntu 16.04
910
- "3.8" # Found on Ubuntu 18.04 / 20.04
1011
- "3.10" # Found on Ubuntu 22.04
1112
- "3.12" # Found on Ubuntu 24.04
13+
container:
14+
image: python:${{ matrix.python-version }}
1215
steps:
1316
- name: Checkout
1417
uses: actions/checkout@v4
15-
- name: Set up Python ${{ matrix.python-version }}
16-
uses: actions/setup-python@v5
17-
with:
18-
python-version: ${{ matrix.python-version }}
1918
- name: Set up Git inside test environment
2019
run: |
2120
git config --global user.name test

0 commit comments

Comments
 (0)