Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/go-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: '1.23'
go-version: '1.24'
Copy link
Preview

Copilot AI Jun 8, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pin the Go version to a specific patch (e.g., '1.24.2') to avoid download errors, as '1.24' may resolve to an unavailable patch release.

Suggested change
go-version: '1.24'
go-version: '1.24.2'

Copilot uses AI. Check for mistakes.

Copy link
Preview

Copilot AI Jun 8, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] Duplicate go-version entries could be consolidated using a strategy.matrix to define the version in one place and reduce repetition.

Copilot uses AI. Check for mistakes.

- run: go mod download
- run: go test -v ./...

Expand All @@ -25,6 +25,6 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: '1.23'
go-version: '1.24'
- run: go mod download
- run: go test -race -v ./...