Skip to content

Commit

Permalink
KUBESAW-192: Introduce a make command for pre-requisite of verify-rep…
Browse files Browse the repository at this point in the history
…lace (#599)

Signed-off-by: Feny Mehta <[email protected]>
  • Loading branch information
fbm3307 authored Sep 30, 2024
1 parent 7e4e153 commit 5a67bae
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion make/go.mk
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ generate-assets: go-bindata

.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: generate-assets tidy vet build test lint-go-code
verify-dependencies: tidy vet build test lint-go-code

.PHONY: tidy
tidy:
Expand All @@ -47,3 +47,7 @@ tidy:
.PHONY: vet
vet:
go vet ./...

.PHONY: pre-verify
pre-verify: generate-assets
echo "Pre-requisite completed"

0 comments on commit 5a67bae

Please sign in to comment.