databricks-sdk-golang/Makefile

12 строки
153 B
Makefile

all : checks test
checks:
go build all
golangci-lint run
test: checks
go test ./...
fmt:
find . -name '*.go' | grep -v vendor | xargs gofmt -s -w