diff options
| author | Raúl Benencia <id@rbenencia.name> | 2026-06-05 21:34:19 -0300 |
|---|---|---|
| committer | Raul Benencia <46945030+raul-te@users.noreply.github.com> | 2026-06-05 21:41:26 -0300 |
| commit | 301801f88d6ca50aa753349a85a2416e78da8fce (patch) | |
| tree | 62ab2030e21a125e92f59c4554de8db51a9a3826 /Makefile | |
| parent | 5de2065b0175e5f0d6aa28a0e03ecb5de05aa5a5 (diff) | |
Add make run target for local testing
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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: |
