Skip to content

Commit

Permalink
fix(ci): comment-out go fix for now (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
wass3rw3rk authored Aug 8, 2024
1 parent 8bd9d2a commit c7421d0
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 c7421d0

Please sign in to comment.