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