Add script to check helm chart (#5172)

This commit is contained in:
Manuel Alejandro de Brito Fontes 2020-02-25 21:14:21 -03:00 committed by GitHub
parent f48774e6db
commit 2ca93f7f67
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 9 deletions

View file

@ -157,12 +157,12 @@ clean: ## Remove .gocache directory.
rm -rf bin/ .gocache/ .cache/
.PHONY: static-check
static-check: ## Run verification script for boilerplate, codegen, gofmt, golint and lualint.
static-check: ## Run verification script for boilerplate, codegen, gofmt, golint, lualint and chart-lint.
ifeq ($(USE_DOCKER), true)
@build/run-in-docker.sh \
build/static-check.sh
hack/verify-all.sh
else
@build/static-check.sh
@hack/verify-all.sh
endif
.PHONY: test