Add a make test target

This commit is contained in:
Marc Di Luzio 2020-06-06 18:49:25 +01:00
parent 0e9082aab7
commit 0fbc973899

View file

@ -6,4 +6,7 @@ build:
install:
go install -ldflags="-X 'github.com/mdiluz/rove/pkg/version.Version=${VERSION}'" ./...
.PHONY: install
test:
go test -v ./...
.PHONY: install test