Browse Source

Create Makefile

Volodymyr Tkach 2 years ago
parent
commit
64b4dac39c
1 changed files with 15 additions and 0 deletions
  1. 15 0
      Makefile

+ 15 - 0
Makefile

@@ -0,0 +1,15 @@
+default: test
+
+clean:
+	go clean -testcache ./...
+
+test:
+	go test ./...
+
+lint:
+	golangci-lint run --disable=structcheck
+
+tidy:
+	go mod tidy
+
+.PHONY: default clean test lint tidy