go-common/Makefile

14 lines
123 B
Makefile
Raw Permalink Normal View History

GO ?= go
.PHONY: vet
vet:
$(GO) vet ./...
.PHONY: fmt
fmt:
$(GO) fmt ./...
.PHONY: test
test:
$(GO) test -race ./...