Skip to content

Commit

Permalink
fix(ci): uncomment go fix for now
Browse files Browse the repository at this point in the history
golang/go@7fd62ba
is slated to land in Go 1.23
  • Loading branch information
wass3rw3rk committed Jul 12, 2024
1 parent 8bd9d2a commit 21864b2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,5 @@ jobs:
# Check that go fmt ./... produces a zero diff; clean up any changes afterwards.
go fmt ./... && git diff --exit-code; code=$?; git checkout -- .; (exit $code)
# Check that go fix ./... produces a zero diff; clean up any changes afterwards.
go fix ./... && git diff --exit-code; code=$?; git checkout -- .; (exit $code)
# Uncomment the following line after updating to Go 1.23.x when go fix has been ... fixed
# go fix ./... && git diff --exit-code; code=$?; git checkout -- .; (exit $code)

0 comments on commit 21864b2

Please sign in to comment.