We use cookies to ensure you get the best experience on our website
1 changed files with
7 additions and
1 deletions
-
7
1
Makefile
|
@@ -1,4 +1,10 @@
|
|
|
default: test
|
|
|
|
|
|
test:
|
|
|
- @go test -v ./...
|
|
|
+ go test ./...
|
|
|
+
|
|
|
+lint:
|
|
|
+ golangci-lint run
|
|
|
+
|
|
|
+tidy:
|
|
|
+ go mod tidy
|