Pre-commit and Makefile improvements #68

Merged
fyrchik merged 6 commits from fyrchik/frostfs-api-go:gitlint into master 2024-09-04 19:51:16 +00:00
Showing only changes of commit 4d35da7c77 - Show all commits

View file

@ -51,9 +51,10 @@ protoc:
rm -rf vendor
# Run Unit Test with go test
test: GOFLAGS ?= "-count=1"
test:
@echo "⇒ Running go test"
@go test ./... -count=1
@GOFLAGS="$(GOFLAGS)" go test ./...
# Run linters
lint: