Skip to content

Commit

Permalink
[CONFIG] Fixing minimum go versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Gonzalo Diaz committed Feb 18, 2025
1 parent 5e039da commit ade5cd7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 ./...
Expand Down
2 changes: 0 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ade5cd7

Please sign in to comment.