We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5e039da + f784e69 commit bfc87c3Copy full SHA for bfc87c3
.github/workflows/go.yml
@@ -21,7 +21,7 @@ jobs:
21
fail-fast: false
22
matrix:
23
os: ["windows-2022", "ubuntu-24.04", "macos-14"]
24
- go: ["1.21.x", "1.22.x", "1.23.x"]
+ go: ['1.22.x', '1.23.x']
25
runs-on: ${{ matrix.os }}
26
steps:
27
- uses: actions/checkout@v4
@@ -30,6 +30,9 @@ jobs:
30
uses: actions/setup-go@v5
31
with:
32
go-version: ${{ matrix.go }}
33
+ check-latest: false
34
+
35
+ - run: go version
36
37
- name: Build
38
run: go build -v ./...
go.mod
@@ -2,8 +2,6 @@ module gon.cl/algorithms
2
3
go 1.22.0
4
5
-toolchain go1.23.6
6
-
7
require (
8
github.com/stretchr/testify v1.10.0
9
go.uber.org/zap v1.27.0
0 commit comments