diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..88e3199 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +.phony: build +build: + ./build.bash + +.phony: test +test: + ./test.bash + +.phony: format +format: + go fmt ./...