We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da403fe commit 638a6e8Copy full SHA for 638a6e8
2 files changed
.github/workflows/test.yaml
@@ -49,7 +49,9 @@ jobs:
49
- run: go test -v ./codec
50
- run: go test -tags codecgen.exec -v ./codec
51
- name: Generate coverage report
52
- run: go test -v -coverprofile=coverage.out ./...
+ env:
53
+ GO_VERSION=${{ needs.get-go-version.outputs.go-version }}
54
+ run: go env -w GOTOOLCHAIN=go${GO_VERSION}+auto && go test -v -coverprofile=coverage.out ./...
55
- name: Upload coverage report
56
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808
57
with:
go.mod
@@ -2,8 +2,6 @@ module github.com/hashicorp/go-msgpack/v2
2
3
go 1.25.1
4
5
-toolchain go1.25.1
6
-
7
require (
8
github.com/Sereal/Sereal/Go/sereal v0.0.0-20231009093132-b9187f1a92c6
9
github.com/davecgh/go-xdr v0.0.0-20161123171359-e6a2ba005892
0 commit comments