Skip to content

Commit 73bf5ca

Browse files
committed
go1.23
1 parent f3c762c commit 73bf5ca

File tree

2 files changed

+18
-6
lines changed

2 files changed

+18
-6
lines changed

.circleci/config.yml

+16-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
version: 2
22
jobs:
3-
go1.22: &base
3+
go1.23: &base
44
docker:
5-
- image: cimg/go:1.22
5+
- image: cimg/go:1.23
66
steps:
77
- run: go version
88
- checkout
99
- run: go test -tags nikandfor_loc_unsafe -v ./...
1010
- run: go test -tags nikandfor_loc_unsafe -v -race ./...
1111

12+
go1.22:
13+
<<: *base
14+
docker:
15+
- image: cimg/go:1.22
16+
1217
go1.21:
1318
<<: *base
1419
docker:
@@ -35,16 +40,21 @@ jobs:
3540
- image: cimg/go:1.17
3641

3742

38-
go1.22_safe: &base_safe
43+
go1.23_safe: &base_safe
3944
<<: *base
4045
docker:
41-
- image: cimg/go:1.22
46+
- image: cimg/go:1.23
4247
steps:
4348
- run: go version
4449
- checkout
4550
- run: go test -v -race ./...
4651
- run: go test -v ./...
4752

53+
go1.22_safe:
54+
<<: *base_safe
55+
docker:
56+
- image: cimg/go:1.22
57+
4858
go1.21_safe:
4959
<<: *base_safe
5060
docker:
@@ -69,11 +79,13 @@ workflows:
6979
version: 2
7080
build:
7181
jobs:
82+
- go1.23_safe
7283
- go1.22_safe
7384
- go1.21_safe
7485
- go1.20_safe
7586
- go1.19_safe
7687
- go1.18_safe
88+
- go1.23
7789
- go1.22
7890
- go1.21
7991
- go1.20

.github/workflows/go.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
strategy:
1212
matrix:
1313
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
14-
go-ver: ["1.22", "1.21", "1.20", "1.19"]
14+
go-ver: ["1.23", "1.22", "1.21", "1.20", "1.19"]
1515
include:
1616
- os: "ubuntu-latest"
17-
go-ver: "1.22"
17+
go-ver: "1.23"
1818
cover: true
1919

2020
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)