mirror of
https://github.com/FlipsideCrypto/databricks-sdk-golang.git
synced 2026-02-06 02:46:56 +00:00
15 lines
246 B
Makefile
15 lines
246 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
|
|
|
|
deepcopy:
|
|
./cmd/deepcopy-gen -i ./,./aws/...,./azure/... -h ./hack/boilerplate.go.txt -v 3
|