Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
merge fmt and vet targets into verify
  • Loading branch information
cjerad committed Feb 22, 2022
commit 5ce2399bcc7db61967d698e710aae2789c0bbfc5
7 changes: 2 additions & 5 deletions src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,9 @@ manifests: ## Generate WebhookConfiguration, ClusterRole and CustomResourceDefi
generate: ## Generate code containing DeepCopy, DeepCopyInto, and DeepCopyObject method implementations.
$(CONTROLLER_GEN) object:headerFile="hack/boilerplate.go.txt" paths="./..."

.PHONY: fmt
fmt: ## Run go fmt against code.
.PHONY: verify
verify: ## Run go fmt and go vet against code.
go fmt ./...

.PHONY: vet
vet: ## Run go vet against code.
go vet ./...

.PHONY: test
Expand Down