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
Copy file name to clipboardExpand all lines: Makefile
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -151,9 +151,14 @@ ci-lint: golangci-lint
151
151
$(GOLANGCI_LINT) run --timeout 15m0s
152
152
153
153
.PHONY: verify
154
-
verify: vet fmt-verify manifests generate ci-lint
154
+
verify: vet fmt-verify manifests generate ci-lint verify-all
155
155
git --no-pager diff --exit-code config api client-go
156
156
157
+
# Run static analysis.
158
+
.PHONY: verify-all
159
+
verify:
160
+
hack/verify-all.sh -v
161
+
157
162
##@ Build
158
163
159
164
# Build the container image
@@ -300,11 +305,6 @@ install: manifests kustomize ## Install CRDs into the K8s cluster specified in ~
300
305
uninstall: manifests kustomize ## Uninstall CRDs from the K8s cluster specified in ~/.kube/config. Call with ignore-not-found=true to ignore resource not found errors during deletion.
0 commit comments