Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 3ad0447d..21ccf07b 100644
--- a/Makefile
+++ b/Makefile
@@ -21,7 +21,8 @@ gitlab-pages: $(GO_FILES)
update:
godep save ./...
-verify: fmt vet lint complexity test
+verify-lite: fmt vet complexity test # lint does not work on go1.5 any more
+verify: verify-lite lint
fmt:
go fmt ./... | awk '{ print "Please run go fmt"; exit 1 }'