From feb95bd28882f8664815a427520627fecc70c880 Mon Sep 17 00:00:00 2001 From: Eric Promislow Date: Mon, 15 Sep 2025 17:09:56 -0700 Subject: [PATCH] Add the toolchain setting to run 'go test -cover' in go 1.25 --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 73c7c73..bb0e9fe 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -17,4 +17,4 @@ jobs: uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0 with: go-version-file: 'go.mod' - - run: go test -v -race -cover ./... + - run: go env -w GOTOOLCHAIN=go1.25.0+auto && go test -v -race -cover ./...