diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 1d892c0..09765c9 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -21,7 +21,7 @@ jobs: fail-fast: false matrix: os: ["windows-2022", "ubuntu-24.04", "macos-14"] - go: ["1.21.x", "1.22.x", "1.23.x"] + go: ['1.21.x', '1.22.x', '1.23.x'] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 @@ -30,6 +30,9 @@ jobs: uses: actions/setup-go@v5 with: go-version: ${{ matrix.go }} + check-latest: false + + - run: go version - name: Build run: go build -v ./... diff --git a/go.mod b/go.mod index 1e166b3..d604033 100644 --- a/go.mod +++ b/go.mod @@ -2,8 +2,6 @@ module gon.cl/algorithms go 1.22.0 -toolchain go1.23.6 - require ( github.com/stretchr/testify v1.10.0 go.uber.org/zap v1.27.0