Added rule to run tests

This commit is contained in:
2025-01-30 13:46:41 -05:00
parent b734d61a03
commit 4f577592ba

View File

@@ -1,5 +1,5 @@
.DEFAULT_GOAL := buildCmd
.PHONY: fmt vet build
.PHONY: fmt vet buildLib buildCmd test
fmt:
go fmt ./...
@@ -9,3 +9,5 @@ buildLib: vet
go build -gcflags="-N -l" ./...
buildCmd: buildLib
go build -C cmd/ -o re ./...
test: buildCmd
go test -v ./...