1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-03-17 20:47:50 +02:00

added fmt task to makefile, improved the rest

This commit is contained in:
Carlos Alexandro Becker 2017-01-15 09:11:37 -02:00
parent 7000053b98
commit 384f8f0219
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940

View File

@ -3,16 +3,20 @@ TEST_PATTERN?=.
TEST_OPTIONS?=
setup: ## Install all the build and lint dependencies
@go get -u github.com/alecthomas/gometalinter
@go get -u github.com/Masterminds/glide
@glide install
@gometalinter --install
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
go test $(TEST_OPTIONS) -cover $(SOURCE_FILES) -run $(TEST_PATTERN) -timeout=30s
fmt: ## gofmt and goimports all go files
find . -name '*.go' | xargs gofmt -w -s
find . -name '*.go' | xargs goimports -w
lint: ## Run all the linters
@gometalinter --vendor --disable-all \
gometalinter --vendor --disable-all \
--enable=deadcode \
--enable=ineffassign \
--enable=gosimple \
@ -30,7 +34,7 @@ lint: ## Run all the linters
ci: lint test ## Run all the tests and code checks
build: ## Build a beta version of releaser
@go build
go build
# Absolutely awesome: http://marmelab.com/blog/2016/02/29/auto-documented-makefile.html
help: