Skip to content

Commit

Permalink
Run CI using Go 1.23rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
BooleanCat committed Jun 27, 2024
1 parent 33b266d commit 48263f5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,10 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.22"
go-version: 1.23.0-rc.1
cache: false
- run: make check
env:
SKIP_LINT: true
GOEXPERIMENT: rangefunc
env: { SKIP_LINT: true }
# - uses: golangci/golangci-lint-action@v4
# with: { version: "latest" }
- run: make cov
Expand All @@ -30,7 +28,6 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.22"
go-version: 1.23.0-rc.1
cache: false
- run: make test
env: { GOEXPERIMENT: rangefunc }
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ test:

cov: SHELL:=/bin/bash
cov:
$(GO_BINARY) test -race -coverprofile=coverage.txt -covermode=atomic $$( go list ./... | grep -v assert )
$(GO_BINARY) test -race -coverprofile=coverage.txt -covermode=atomic $$( go list ./... | grep -v assert | grep -v future )
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/BooleanCat/go-functional/v2

go 1.22
go 1.23

0 comments on commit 48263f5

Please sign in to comment.