diff --git a/makefile b/makefile new file mode 100644 index 0000000..ed218e8 --- /dev/null +++ b/makefile @@ -0,0 +1,12 @@ +all: lint test + +lint: force + ./tools/golangci-lint run -v + +test: force + go test -v -timeout 5s ./... + +clean: + rm -rf .cache + +.PHONY: force