Skip to content

Commit

Permalink
KUBESAW-124: Makefile target for dependency validations
Browse files Browse the repository at this point in the history
Signed-off-by: Feny Mehta <[email protected]>
  • Loading branch information
fbm3307 committed Jun 25, 2024
1 parent 44e70a4 commit 670641d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions make/verify-dependencies.mk
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.PHONY: verify-dependencies
## Runs commands to verify after the updated dependecies of toolchain-common/API(go mod replace), if the repo needs any changes to be made
verify-dependencies: tidy vet build test

.PHONY: tidy
tidy:
go mod tidy

.PHONY: vet
vet:
go vet ./...

0 comments on commit 670641d

Please sign in to comment.