Files
revive/Makefile
T

14 lines
113 B
Makefile

.PHONY: test
export GO111MODULE=on
install:
@go mod vendor
build:
@go build
test:
@go test -v ./test/...