diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 90d59f0..079cce5 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -32,4 +32,4 @@ 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) + go fix ./... && git diff --exit-code; code=$?; git checkout -- .; (exit $code)