1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
.PHONY: all imports test lint all: imports test lint imports: goimports -w ./ test: go test -race ./... test_coverage: go test -race -coverprofile=coverage.out -covermode=atomic ./... lint: golangci-lint run ./...