Browse Source

Create Makefile

Volodymyr Tkach 2 years ago
parent
commit
4923558797
1 changed files with 10 additions and 0 deletions
  1. 10 0
      Makefile

+ 10 - 0
Makefile

@@ -0,0 +1,10 @@
+default: test
+
+test:
+	go test ./...
+
+lint:
+	golangci-lint run
+
+tidy:
+	go mod tidy