Skip to content

Commit

Permalink
rework CI matrix to run 4 PG versions on latest Go, plus one prior Go…
Browse files Browse the repository at this point in the history
… release w/ latest PG
  • Loading branch information
bgentry committed Nov 4, 2024
1 parent 58949f5 commit 50d3080
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,19 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- "1.22"
- "1.23"
postgres-version: [15, 16, 17]
include:
# Run the two latest Go versions on the latest Postgres version:
- go-version: "1.23"
postgres-version: 17
- go-version: "1.22"
postgres-version: 17
# Also run the 3 previous Postgres versions with the latest Go version:
- go-version: "1.23"
postgres-version: 16
- go-version: "1.23"
postgres-version: 15
- go-version: "1.23"
postgres-version: 14
fail-fast: false
timeout-minutes: 5

Expand Down

0 comments on commit 50d3080

Please sign in to comment.