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
GOFMT = gofmtresult=$$(gofmt -e -l -s ${GO_FILES} ${GO_PACKAGES}); if [[ -n $$gofmtresult ]]; then echo "gofmt errors found in the following files: $${gofmtresult}"; false; fi;
32
+
GOTEST := go test --race
36
33
37
34
all:
38
35
@echo "Use a Makefile to control top-level building of the project."
@@ -53,14 +50,10 @@ build:
53
50
test: test-style test-unit
54
51
55
52
test-style:
56
-
${DEV_ENV_CMD} bash -c '${GOFMT}'
57
-
${DEV_ENV_CMD} sh -c 'go vet $(repo_path) $(GO_PACKAGES_REPO_PATH)'
0 commit comments