We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a4865e commit f7d40b2Copy full SHA for f7d40b2
openshift/Makefile
@@ -21,6 +21,7 @@ export GO_BUILD_LDFLAGS := -s -w -X '$(VERSION_PATH).gitCommit=$(GIT_COMMIT)'
21
verify: ## Run downstream-specific verify
22
$(MAKE) tidy fmt generate -C $(DIR)/../
23
$(MAKE) manifests
24
+ $(MAKE) -C tests-extension verify
25
git diff --exit-code
26
27
.PHONY: manifests
openshift/tests-extension/Makefile
@@ -42,7 +42,8 @@ TOOLS_BIN_DIR := $(CURDIR)/bin
42
43
#SECTION Development
44
.PHONY: verify #HELP To verify the code
45
-verify: tidy fmt vet lint
+verify: bindata tidy fmt vet lint
46
+ git diff --exit-code
47
48
.PHONY: tidy #HELP Run go mod tidy.
49
tidy:
0 commit comments