Skip to content

Commit

Permalink
go1.23
Browse files Browse the repository at this point in the history
  • Loading branch information
nikandfor committed Aug 25, 2024
1 parent f3c762c commit 73bf5ca
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 6 deletions.
20 changes: 16 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
version: 2
jobs:
go1.22: &base
go1.23: &base
docker:
- image: cimg/go:1.22
- image: cimg/go:1.23
steps:
- run: go version
- checkout
- run: go test -tags nikandfor_loc_unsafe -v ./...
- run: go test -tags nikandfor_loc_unsafe -v -race ./...

go1.22:
<<: *base
docker:
- image: cimg/go:1.22

go1.21:
<<: *base
docker:
Expand All @@ -35,16 +40,21 @@ jobs:
- image: cimg/go:1.17


go1.22_safe: &base_safe
go1.23_safe: &base_safe
<<: *base
docker:
- image: cimg/go:1.22
- image: cimg/go:1.23
steps:
- run: go version
- checkout
- run: go test -v -race ./...
- run: go test -v ./...

go1.22_safe:
<<: *base_safe
docker:
- image: cimg/go:1.22

go1.21_safe:
<<: *base_safe
docker:
Expand All @@ -69,11 +79,13 @@ workflows:
version: 2
build:
jobs:
- go1.23_safe
- go1.22_safe
- go1.21_safe
- go1.20_safe
- go1.19_safe
- go1.18_safe
- go1.23
- go1.22
- go1.21
- go1.20
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
strategy:
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
go-ver: ["1.22", "1.21", "1.20", "1.19"]
go-ver: ["1.23", "1.22", "1.21", "1.20", "1.19"]
include:
- os: "ubuntu-latest"
go-ver: "1.22"
go-ver: "1.23"
cover: true

runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit 73bf5ca

Please sign in to comment.