diff --git a/Makefile b/Makefile index 3698e7a..aca7d01 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,14 @@ VERSION := $(shell git describe --always --long --dirty --tags) build: + go mod download go build -ldflags="-X 'github.com/mdiluz/rove/pkg/version.Version=${VERSION}'" ./... install: + go mod download go install -ldflags="-X 'github.com/mdiluz/rove/pkg/version.Version=${VERSION}'" ./... test: - go test -v ./... + ./script/test.sh .PHONY: install test \ No newline at end of file