From 018470c330f3ab90858ba64e1cd4a48df393b9b3 Mon Sep 17 00:00:00 2001 From: kyu08 <49891479+kyu08@users.noreply.github.com> Date: Fri, 9 Aug 2024 19:18:55 +0900 Subject: [PATCH] chore: add `Makefile` --- Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..88089352 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +.PHONY: run +run: + @go run . + +.PHONY: run-debug +run-debug: + go run . --debug + +.PHONY: test +test: + go test -v ./...