1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2026-05-16 09:20:15 +02:00
This commit is contained in:
Carlos Alexandro Becker
2017-01-02 14:23:02 -02:00
parent abffee6c25
commit 7953e9df12
+4 -3
View File
@@ -3,15 +3,16 @@ TEST_PATTERN?=.
TEST_OPTIONS?=
setup: ## Install all the build and lint dependencies
@go get -u -v github.com/alecthomas/gometalinter
@go get -u -v github.com/Masterminds/glide
@go get -u github.com/alecthomas/gometalinter
@go get -u github.com/Masterminds/glide
@glide install
@gometalinter --install
test: ## Run all the tests
@go test $(TEST_OPTIONS) -cover $(SOURCE_FILES) -run $(TEST_PATTERN) -timeout=30s
lint: ## Run all the linters
@gometalinter --vendor --vendored-linters --disable-all \
@gometalinter --vendor --disable-all \
--enable=deadcode \
--enable=ineffassign \
--enable=gosimple \