[フレーム]
Last Updated: February 25, 2016
·
2.623K
· akalyaev

Colored Makefile for Golang projects

Nice piece of code that we use in our Golang projects (something wrong with formatting here so GRAB IT FROM GIST):

NO_COLOR=033円[0m
OK_COLOR=033円[32;01m
ERROR_COLOR=033円[31;01m
WARN_COLOR=033円[33;01m
DEPS = $(go list -f '{{range .TestImports}}{{.}} {{end}}' ./...)

deps:
 @echo "$(OK_COLOR)==> Installing dependencies$(NO_COLOR)"
 @go get -d -v ./...
 @echo $(DEPS) | xargs -n1 go get -d

updatedeps:
 @echo "$(OK_COLOR)==> Updating all dependencies$(NO_COLOR)"
 @go get -d -v -u ./...
 @echo $(DEPS) | xargs -n1 go get -d -u

format:
 @echo "$(OK_COLOR)==> Formatting$(NO_COLOR)"
 go fmt ./...

test: deps
 @echo "$(OK_COLOR)==> Testing$(NO_COLOR)"
 go test ./...

lint:
 @echo "$(OK_COLOR)==> Linting$(NO_COLOR)"
 golint .

all: format lint test

Gist

AltStyle によって変換されたページ (->オリジナル) /