From 57607a79aca8283498544cf06fd39c7ddfca19f6 Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Thu, 5 May 2022 10:19:57 +0200 Subject: [PATCH] Add a Makefile --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..150cc3c --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +.PHONY: lint + +lint: export CGO_ENABLED = 0 +lint: + golangci-lint run + +test: + go test ./...