Files
goreportcard/Makefile
2016-08-17 20:16:30 +09:00

24 lines
425 B
Makefile

all: lint build test
build:
go build ./...
install:
./scripts/make-install.sh
lint:
gometalinter --exclude=vendor --exclude=repos --disable-all --enable=golint --enable=vet --enable=gofmt ./...
find . -name '*.go' | xargs gofmt -w -s
test:
go test -cover ./check ./handlers
start:
go run main.go
start-dev:
go run main.go -dev
misspell:
find . -name '*.go' -not -path './vendor/*' | xargs misspell -error