First working version
This commit is contained in:
parent
63ed6316bc
commit
d8eda81e0e
31 changed files with 3134 additions and 0 deletions
24
GNUmakefile
Normal file
24
GNUmakefile
Normal file
|
@ -0,0 +1,24 @@
|
|||
default: fmt lint install generate
|
||||
|
||||
build:
|
||||
go build -v ./...
|
||||
|
||||
install: build
|
||||
go install -v ./...
|
||||
|
||||
lint:
|
||||
golangci-lint run
|
||||
|
||||
generate:
|
||||
cd tools; go generate ./...
|
||||
|
||||
fmt:
|
||||
gofmt -s -w -e .
|
||||
|
||||
test:
|
||||
go test -v -cover -timeout=120s -parallel=10 ./...
|
||||
|
||||
testacc:
|
||||
TF_ACC=1 go test -v -cover -timeout 120m ./...
|
||||
|
||||
.PHONY: fmt lint test testacc build install generate
|
Loading…
Add table
Add a link
Reference in a new issue