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
printf'// (c) Copyright IBM Corp. %s\n// (c) Copyright Instana Inc. %s\n\npackage %s\n\nconst Version = "0.0.0"\n'$(shell date +%Y)$(shell date +%Y)$(notdir$@)>$@/version.go
44
44
45
-
.PHONY: test install legal $(MODULES)$(INTEGRATION_TESTS)
45
+
fmtcheck:
46
+
@test -z $(shell gofmt -l . && exit 1)
47
+
48
+
importcheck:
49
+
@test -z $(shell goimports -l . && exit 1)
50
+
51
+
.PHONY: test install legal fmtcheck importcheck $(MODULES)$(INTEGRATION_TESTS)
0 commit comments