diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..41f3b1d --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +.PHONY: test test_js all + +all: test test_js + +test: + go test ./... + +testjs: + cd test_js && go run .. --dry-run --verbose