mirror of
https://github.com/gojp/goreportcard.git
synced 2026-01-29 06:49:05 +08:00
15 lines
251 B
Makefile
15 lines
251 B
Makefile
all: lint test
|
|
|
|
install:
|
|
./scripts/make-install.sh
|
|
|
|
lint:
|
|
gometalinter --exclude=vendor --exclude=repos --disable-all --enable=lint --enable=vet ./...
|
|
find . -name '*.go' | xargs gofmt -w -s
|
|
|
|
test:
|
|
go test -cover ./...
|
|
|
|
start:
|
|
go run main.go
|