From ca34b0dc621359cc705108ba2037c47d4e73295b Mon Sep 17 00:00:00 2001 From: Kristian Borgwarth <10348902@pm.me> Date: Fri, 3 Apr 2026 20:40:56 +0200 Subject: [PATCH] feat(test): makefile for test --- makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 makefile diff --git a/makefile b/makefile new file mode 100644 index 0000000..66a61a1 --- /dev/null +++ b/makefile @@ -0,0 +1,9 @@ +.PHONY: test test-integration test-unit + +test: test-unit test-integration + +test-unit: + go test ./test/test_unit/... + +test-integration: + go test ./test/test_integration/...