Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.23.10, 1.24.4]
go-version: [oldstable, stable]
services:
postgres:
image: postgres:17.4
Expand Down Expand Up @@ -44,8 +44,8 @@ jobs:
- name: Run tests
run: |
mkdir -p /tmp/test-reports
# gotestsum hash is version version v1.12.1
go run gotest.tools/gotestsum@3f7ff0ec4aeb6f95f5d67c998b71f272aa8a8b41 --junitfile /tmp/test-reports/unit-tests.xml
# gotestsum hash is version version v1.12.3
go run gotest.tools/gotestsum@ddd0b05a6878e2e8257a2abe6e7df66cebc53d0e --junitfile /tmp/test-reports/unit-tests.xml
make test-examples
- uses: actions/upload-artifact@v4
name: Upload test results
Expand All @@ -59,14 +59,14 @@ jobs:
chart: true
amend: true
if: |
matrix.go-version == '1.24.4'
matrix.go-version == 'stable'
continue-on-error: true

test-race:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.23.10, 1.24.4]
go-version: [oldstable, stable]
steps:
- uses: actions/checkout@v3
- name: Set up Go
Expand All @@ -89,7 +89,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.23.10, 1.24.4]
go-version: [oldstable, stable]
steps:
- uses: actions/checkout@v3
- name: Set up Go
Expand All @@ -116,7 +116,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.23.10, 1.24.4]
go-version: [oldstable, stable]
steps:
- uses: actions/checkout@v3
- name: Set up Go
Expand Down
2 changes: 1 addition & 1 deletion mise.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ SQLX_MYSQL_DSN = "root:password@tcp(127.0.0.1:3306)/test"
SQLX_POSTGRES_DSN = "user=user password=password dbname=postgres host=localhost sslmode=disable"

[tools]
"go" = { version = "1.23.8" }
go = "1.25.1"
"go:honnef.co/go/tools/cmd/staticcheck" = { version = "v0.6.1" }
"go:golang.org/x/vuln/cmd/govulncheck" = { version = "v1.1.4" }
"go:golang.org/x/tools/cmd/goimports" = { version = "v0.20.0" }
Expand Down