Skip to content
Merged
Show file tree
Hide file tree
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
10 changes: 5 additions & 5 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
go: [ '1.24', '1.25' ]
go: [ '1.25', '1.26' ]
exclude:
# Only latest Go version for Windows and MacOS.
- os: windows-latest
go: '1.24'
go: '1.25'
- os: macos-latest
go: '1.24'
go: '1.25'
# Exclude latest Go version for Ubuntu as Coverage uses it.
- os: ubuntu-latest
go: '1.25'
go: '1.26'
fail-fast: false
steps:
- name: Setup go
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
uses: actions/setup-go@v5
with:
cache: true
go-version: 1.25
go-version: 1.26

- name: Test and write coverage profile
run: go test -coverprofile=coverage.txt -covermode=atomic ./...
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/nspcc-dev/hrw/v2

go 1.24.0
go 1.25.0

require (
github.com/stretchr/testify v1.11.1
Expand Down
Loading