added install option to Makefile

This commit is contained in:
Erik Brakkee 2024-12-25 00:10:11 +01:00
parent 1adc47377f
commit 47bb4af991

View File

@ -14,6 +14,9 @@ build: vet
mkdir -p bin mkdir -p bin
go build -o bin ./cmd/... go build -o bin ./cmd/...
install:
go install ./...
test: build test: build
go test -count=1 -coverprofile=testout/coverage.out ${TESTFLAGS} ./... go test -count=1 -coverprofile=testout/coverage.out ${TESTFLAGS} ./...