mirror of
https://github.com/gojp/goreportcard.git
synced 2026-01-29 06:49:05 +08:00
16 lines
185 B
Makefile
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
|