Skip to content

Commit f1f6854

Browse files
authored
Merge pull request #1415 from fviard/fixes/1411-bump-py-ghactions
ci: change python matrix to add 3.13 and use older ubuntu for python3.7
2 parents 0f18d70 + a5e25f1 commit f1f6854

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/test.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,16 @@ on: [push, pull_request, workflow_dispatch]
44

55
jobs:
66
test:
7-
runs-on: ubuntu-latest
87
strategy:
98
matrix:
10-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
9+
os:
10+
- ubuntu-latest
11+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
12+
include:
13+
- python-version: '3.7'
14+
os: ubuntu-22.04
1115
fail-fast: false
16+
runs-on: ${{ matrix.os }}
1217
env:
1318
cache-revision: 2
1419
steps:

0 commit comments

Comments
 (0)