ci: update to Go 1.22.0 (#4312)

This commit is contained in:
Marten Seemann
2024-02-08 09:15:56 +07:00
committed by GitHub
parent 43baf2db7a
commit 013949cda3
10 changed files with 16 additions and 18 deletions

View File

@@ -1,15 +1,15 @@
version: 2.1
executors:
test-go121:
test-go122:
docker:
- image: "cimg/go:1.21"
- image: "cimg/go:1.22"
environment:
runrace: true
TIMESCALE_FACTOR: 3
jobs:
"test": &test
executor: test-go121
executor: test-go122
steps:
- checkout
- run:
@@ -33,10 +33,10 @@ jobs:
- run:
name: "Run version negotiation tests with qlog"
command: go run github.com/onsi/ginkgo/v2/ginkgo -v -randomize-all -trace integrationtests/versionnegotiation -- -qlog
go121:
go122:
<<: *test
workflows:
workflow:
jobs:
- go121
- go122