Update Makefile

This commit is contained in:
c-bata 2017-07-18 05:32:25 +09:00
parent f3212afbf7
commit 570e2c6507

View File

@ -12,16 +12,16 @@ setup: ## Setup for required tools.
.PHONY: fmt
fmt: ## Formatting source codes.
@goimports -w $$(glide nv -x)
@goimports -w .
.PHONY: lint
lint: ## Run golint and go vet.
@golint $$(glide novendor)
@go vet $$(glide novendor)
@golint .
@go vet .
.PHONY: test
test: ## Run the tests.
@go test $$(glide novendor)
@go test .
.PHONY: help
help: ## Show help text