From 301801f88d6ca50aa753349a85a2416e78da8fce Mon Sep 17 00:00:00 2001 From: Raúl Benencia Date: Fri, 5 Jun 2026 21:34:19 -0300 Subject: Add make run target for local testing --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9d9d33c..8da62a0 100644 --- a/Makefile +++ b/Makefile @@ -8,6 +8,9 @@ pkgs = $(shell $(GO) list ./... | grep -v /vendor/) all: $(GO) build +run: + $(GO) run . -data-dir test/integ-test/integ-test-configs -debug + fmt: $(GO) fmt @@ -23,7 +26,7 @@ test: fmt $(GO) test -v $(pkgs) && \ ./test/integ-test/integ_test.py -vv -.PHONY: all clean docs +.PHONY: all run clean docs binaries: linux windows linux: -- cgit v1.2.3