Files
2015-05-19 10:02:58 +00:00

20 lines
154 B
Makefile

.PHONY: all vet lint build test clean
all: build test vet lint
vet:
go vet ./...
lint:
golint .
build:
go build
test:
go test
clean:
go clean