From e7f96cba6ea3f9612fac0be4d2f2aea1235996a8 Mon Sep 17 00:00:00 2001 From: Ricardo Band Date: Mon, 16 Oct 2023 18:53:00 +0200 Subject: [PATCH] Create Makefile --- Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..59353b3 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +.PHONY: run debug test help + +run: + # run the thing + +debug: + # run the thing in debug mode + +test: + pytest + +help: + echo "help!"