From 802eb2cb2475c72739f16b88964118437894f5b2 Mon Sep 17 00:00:00 2001 From: gfanton <8671905+gfanton@users.noreply.github.com> Date: Fri, 12 Apr 2024 10:18:46 +0200 Subject: [PATCH] chore: add test rule to Makefile Signed-off-by: gfanton <8671905+gfanton@users.noreply.github.com> --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index e44443d..d735685 100644 --- a/Makefile +++ b/Makefile @@ -7,6 +7,9 @@ build: @echo "Building supernova binary" go build -o build/supernova ./cmd +test: + go test -v ./... + .PHONY: lint lint: $(golangci_lint) run --config .golangci.yaml