Skip to content

Commit fbe1e2a

Browse files
committed
Update CI to use Ubuntu 24.04
1 parent 04daac4 commit fbe1e2a

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,23 @@ env:
99

1010
jobs:
1111
build:
12-
runs-on: ubuntu-20.04
12+
runs-on: ubuntu-24.04
1313
container: ${{ matrix.container }}
1414
strategy:
1515
fail-fast: false
1616
matrix:
1717
python:
18-
- "3.6"
19-
- "3.7"
2018
- "3.8"
2119
- "3.9"
2220
- "3.10"
2321
- "3.11"
2422
- "3.12"
2523
- "3.13"
24+
include:
25+
- python: "3.6"
26+
container: "python:3.6"
27+
- python: "3.7"
28+
container: "python:3.7"
2629
env:
2730
PYTHON: ${{ matrix.python }}
2831
steps:
@@ -45,7 +48,6 @@ jobs:
4548
for file in /usr/lib/python3/dist-packages/rpm/_rpm*.cpython-*.so; do
4649
sudo ln -s ${file} $(echo ${file} | sed 's/\.cpython[^.]*//');
4750
done
48-
if: matrix.container == null
4951
- name: Install dependencies
5052
run: pip install tox tox-gh-actions
5153
- name: Run tests

0 commit comments

Comments
 (0)