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 (#1091)

Signed-off-by: Feny Mehta <fbm3307@gmail.com>
Co-authored-by: Francisc Munteanu <fmuntean@redhat.com>
  • Loading branch information
fbm3307 and mfrancisc authored Sep 30, 2024
1 parent f5783a7 commit 67042ce
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 @@ -69,7 +69,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 tidy vet build test lint-go-code
verify-dependencies: tidy vet build test lint-go-code

.PHONY: tidy
tidy:
Expand All @@ -78,4 +78,8 @@ tidy:
.PHONY: vet
vet:
go vet ./...

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

0 comments on commit 67042ce

Please sign in to comment.