Skip to content

Commit

Permalink
Merge branch 'master' of github.com:codeready-toolchain/member-operat…
Browse files Browse the repository at this point in the history
…or into osl-member
  • Loading branch information
alexeykazakov committed Jun 28, 2024
2 parents 6848b9b + 4cf6d0a commit 6c6418f
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions make/go.mk
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,14 @@ generate-assets: go-bindata
@rm ./pkg/consoleplugin/deploy/template_assets.go 2>/dev/null || true
@$(GO_BINDATA) -pkg deploy -o ./pkg/consoleplugin/deploy/template_assets.go -nocompress -prefix deploy/consoleplugin deploy/consoleplugin

.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 lint-go-code

.PHONY: tidy
tidy:
go mod tidy

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

0 comments on commit 6c6418f

Please sign in to comment.