From b6d7191835cf9dde50acee4a0c288b9f52eb6382 Mon Sep 17 00:00:00 2001 From: Gareth Rushgrove Date: Sun, 23 Apr 2023 13:49:41 +0100 Subject: [PATCH] Added a Makefile to running commands --- Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..cad2670 --- /dev/null +++ b/Makefile @@ -0,0 +1,13 @@ +build: + @go build -v + +test: + @go test -v ./... + +acceptance: build + @bats -r . + +lint: + @golangci-lint run --fix + +.PHONY: build test acceptance lint