diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index d6bb132..574603a 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -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 @@ -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 ./... diff --git a/go.mod b/go.mod index 5d3e255..75a0671 100644 --- a/go.mod +++ b/go.mod @@ -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