From 0fbc973899eefe7785d8efbb5ec62fd22c89f409 Mon Sep 17 00:00:00 2001 From: Marc Di Luzio Date: Sat, 6 Jun 2020 18:49:25 +0100 Subject: [PATCH] Add a make test target --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b059242..3698e7a 100644 --- a/Makefile +++ b/Makefile @@ -6,4 +6,7 @@ build: install: go install -ldflags="-X 'github.com/mdiluz/rove/pkg/version.Version=${VERSION}'" ./... -.PHONY: install \ No newline at end of file +test: + go test -v ./... + +.PHONY: install test \ No newline at end of file