summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 7af41ab74b..f023408754 100644
--- a/Makefile
+++ b/Makefile
@@ -193,7 +193,11 @@ fmt:
.PHONY: vet
vet:
+ # Default vet
$(GO) vet $(GO_PACKAGES)
+ # Custom vet
+ $(GO) build -mod=vendor gitea.com/jolheiser/gitea-vet
+ $(GO) vet -vettool=gitea-vet $(GO_PACKAGES)
.PHONY: $(TAGS_EVIDENCE)
$(TAGS_EVIDENCE):
@@ -264,7 +268,7 @@ fmt-check:
lint: lint-backend lint-frontend
.PHONY: lint-backend
-lint-backend: golangci-lint revive swagger-check swagger-validate test-vendor
+lint-backend: golangci-lint revive vet swagger-check swagger-validate test-vendor
.PHONY: lint-frontend
lint-frontend: node_modules
@@ -301,7 +305,7 @@ unit-test-coverage:
.PHONY: vendor
vendor:
- $(GO) mod tidy && TAGS="$(TAGS) vendor" $(GO) mod vendor
+ $(GO) mod tidy && $(GO) mod vendor
.PHONY: test-vendor
test-vendor: vendor