feat(test): makefile for test

This commit is contained in:
Kristian Borgwarth 2026-04-03 20:40:56 +02:00
parent ce38f24c86
commit ca34b0dc62

9
makefile Normal file
View file

@ -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/...