From 6d781df6bda2b86a8dd00d12a13455a46ad86057 Mon Sep 17 00:00:00 2001 From: JP Appel Date: Fri, 27 Sep 2024 22:33:07 -0400 Subject: Add project makefile + Update gitignore --- Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..4a0b608 --- /dev/null +++ b/Makefile @@ -0,0 +1,15 @@ +.PHONY: all +all: + go build + +.PHONY: tidy +tidy: + go mod tidy + +.PHONY: clean +clean: tidy + rm ./bingo-factory + +.PHONY: test +test: + go test ./... -- cgit v1.2.3