You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- # Do not install yet, since we want it to happen inside the script step below.
script:
- go get -t -v ./...
- diff -u <(echo -n) <(gofmt -d -s .) # Make sure formatting is correct.
- go generate -x ./... && git diff --exit-code; code=$?; git checkout -- .; (exit $code) # Check that go generate ./... produces a zero diff; clean up any changes afterwards.