18 lines
207 B
Makefile
18 lines
207 B
Makefile
all: build check
|
|
|
|
build :
|
|
go build
|
|
|
|
ifdef LONG
|
|
short_option =
|
|
else
|
|
short_option = -short
|
|
endif
|
|
|
|
check :
|
|
go vet
|
|
go test $(short_option) -coverprofile=cover.out -covermode=count
|
|
errcheck -abspath
|
|
golint
|
|
|