Skip to content

Commit 6369613

Browse files
authored
Fix definition of verify-all.sh in the Makefile
1 parent 1533244 commit 6369613

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Makefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -151,9 +151,14 @@ ci-lint: golangci-lint
151151
$(GOLANGCI_LINT) run --timeout 15m0s
152152

153153
.PHONY: verify
154-
verify: vet fmt-verify manifests generate ci-lint
154+
verify: vet fmt-verify manifests generate ci-lint verify-all
155155
git --no-pager diff --exit-code config api client-go
156156

157+
# Run static analysis.
158+
.PHONY: verify-all
159+
verify:
160+
hack/verify-all.sh -v
161+
157162
##@ Build
158163

159164
# Build the container image
@@ -300,11 +305,6 @@ install: manifests kustomize ## Install CRDs into the K8s cluster specified in ~
300305
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.
301306
$(KUSTOMIZE) build config/crd | $(KUBECTL) delete --ignore-not-found=$(ignore-not-found) -f -
302307

303-
# Run static analysis.
304-
.PHONY: verify
305-
verify:
306-
hack/verify-all.sh -v
307-
308308
##@ Helm
309309
PHONY: inferencepool-helm-chart-push
310310
inferencepool-helm-chart-push: yq helm

0 commit comments

Comments
 (0)