Skip to content

Commit f073d3c

Browse files
ci: Run Python 3.7 tests in an older version of Ubuntu
1 parent 7d782b1 commit f073d3c

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,23 @@ env:
2121

2222
jobs:
2323
test:
24-
runs-on: ubuntu-latest
24+
name: Python ${{ matrix.python-version }}
25+
runs-on: ${{ matrix.os }}
2526
strategy:
2627
fail-fast: false
2728
matrix:
29+
os: [ubuntu-24.04]
2830
python-version:
29-
- "3.7"
3031
- "3.8"
3132
- "3.9"
3233
- "3.10"
3334
- "3.11"
3435
- "3.12"
3536
- "3.13"
3637
- "3.14"
38+
include:
39+
- os: ubuntu-22.04
40+
python-version: "3.7"
3741
steps:
3842
- name: Checkout code
3943
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0

0 commit comments

Comments
 (0)