Files
goreportcard/Makefile
2016-04-29 18:25:53 +09:00

15 lines
242 B
Makefile

all: lint test
install:
./scripts/make-install.sh
lint:
gometalinter --exclude=vendor --exclude=repos --disable-all --enable=lint,vet ./...
find . -name '*.go' | xargs gofmt -w -s
test:
go test -cover ./...
start:
go run main.go