Skip to content

Commit ad6cd55

Browse files
committed
update workflow file
Change-Id: I429aa676ab0ef8a6fcc6d1dfc0901948c70f841e
1 parent 2d42642 commit ad6cd55

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

.github/workflows/run-on-pr.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,13 @@ jobs:
2323
# run this job using this matrix, excluding some combinations below.
2424
matrix:
2525
os:
26-
- "ubuntu-latest"
26+
- "ubuntu-22.04"
2727
python-version:
2828
- "3.11"
2929
sqlalchemy:
3030
- sqla13
3131
- sqla14
32+
- sqla20
3233
- sqlamain
3334
# abort all jobs as soon as one fails
3435
fail-fast: true

.github/workflows/run-test.yaml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
# run this job using this matrix, excluding some combinations below.
2727
matrix:
2828
os:
29-
- "ubuntu-latest"
29+
- "ubuntu-22.04"
3030
- "windows-latest"
3131
- "macos-latest"
3232
python-version:
@@ -35,14 +35,24 @@ jobs:
3535
- "3.10"
3636
- "3.11"
3737
- "3.12"
38+
- "3.13"
3839
sqlalchemy:
3940
- sqla13
4041
- sqla14
42+
- sqla20
4143
- sqlamain
4244
exclude:
43-
# sqla13 does not seem to support 3.12
45+
# sqla13 does not support 3.12+
4446
- sqlalchemy: sqla13
4547
python-version: "3.12"
48+
- sqlalchemy: sqla13
49+
python-version: "3.13"
50+
# sqla14 does not support 3.13+
51+
- sqlalchemy: sqla14
52+
python-version: "3.13"
53+
# sqlamain does not support 3.8
54+
- sqlalchemy: sqlamain
55+
python-version: "3.8"
4656

4757
fail-fast: false
4858

@@ -77,6 +87,7 @@ jobs:
7787
- "3.10"
7888
- "3.11"
7989
- "3.12"
90+
- "3.13"
8091

8192
fail-fast: false
8293

0 commit comments

Comments
 (0)