Files
goreportcard/Makefile
Shawn Smith 26a01e5fd7 add make all
2016-02-06 22:41:35 +09:00

16 lines
195 B
Makefile

all: lint test
install:
./scripts/make-install.sh
lint:
golint ./...
go vet ./...
find . -name '*.go' | xargs gofmt -w -s
test:
godep go test -cover ./...
start:
godep go run main.go