From e735969caf8ad4714e8d22f0da70df6c6b350a06 Mon Sep 17 00:00:00 2001 From: mo khan Date: Mon, 14 Apr 2025 13:45:14 -0600 Subject: test: add an integration test and run in CI --- Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index fbb7183..fb84df7 100644 --- a/Makefile +++ b/Makefile @@ -15,10 +15,15 @@ setup: build: sparkled -test: +test-unit: @go clean -testcache @go test -shuffle=on ./... +test-integration: build-image + @go test -tags=integration ./test/integration/... + +test: test-unit test-integration + build-image: @docker build --tag $(IMAGE_TAG) . -- cgit v1.2.3