From 5396273447260b88e9aea77bb3347ed8ad4b1ae5 Mon Sep 17 00:00:00 2001 From: xengineering Date: Wed, 8 May 2024 21:23:14 +0200 Subject: Add 'tests' target to Makefile This makes it easier to run unit tests. --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index f13818a..3bfd158 100644 --- a/Makefile +++ b/Makefile @@ -13,6 +13,10 @@ $(BUILD_DIR)/$(TARGET_EXEC): debug: go run -ldflags "-X main.version=$(VERSION)" $(MODULE_NAME) +.PHONY: tests +tests: + go test $(MODULE_NAME)/... + .PHONY: clean clean: rm -rf $(BUILD_DIR) -- cgit v1.2.3-70-g09d2