Browse Source

Update Makefile

Volodymyr Tkach 2 years ago
parent
commit
c75a16b8b9
1 changed files with 6 additions and 1 deletions
  1. 6 1
      Makefile

+ 6 - 1
Makefile

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