Skip to content

Commit

Permalink
update workflow file
Browse files Browse the repository at this point in the history
Change-Id: I429aa676ab0ef8a6fcc6d1dfc0901948c70f841e
  • Loading branch information
CaselIT committed Jan 20, 2025
1 parent 2d42642 commit ad6cd55
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/run-on-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,13 @@ jobs:
# run this job using this matrix, excluding some combinations below.
matrix:
os:
- "ubuntu-latest"
- "ubuntu-22.04"
python-version:
- "3.11"
sqlalchemy:
- sqla13
- sqla14
- sqla20
- sqlamain
# abort all jobs as soon as one fails
fail-fast: true
Expand Down
15 changes: 13 additions & 2 deletions .github/workflows/run-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
# run this job using this matrix, excluding some combinations below.
matrix:
os:
- "ubuntu-latest"
- "ubuntu-22.04"
- "windows-latest"
- "macos-latest"
python-version:
Expand All @@ -35,14 +35,24 @@ jobs:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
sqlalchemy:
- sqla13
- sqla14
- sqla20
- sqlamain
exclude:
# sqla13 does not seem to support 3.12
# sqla13 does not support 3.12+
- sqlalchemy: sqla13
python-version: "3.12"
- sqlalchemy: sqla13
python-version: "3.13"
# sqla14 does not support 3.13+
- sqlalchemy: sqla14
python-version: "3.13"
# sqlamain does not support 3.8
- sqlalchemy: sqlamain
python-version: "3.8"

fail-fast: false

Expand Down Expand Up @@ -77,6 +87,7 @@ jobs:
- "3.10"
- "3.11"
- "3.12"
- "3.13"

fail-fast: false

Expand Down

0 comments on commit ad6cd55

Please sign in to comment.