Files
goreportcard/Makefile
2016-03-16 19:00:29 +09:00

16 lines
185 B
Makefile

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