mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-16 19:52:49 -06:00
12 lines
121 B
Makefile
12 lines
121 B
Makefile
|
.PHONY: default lint test
|
||
|
|
||
|
default: lint test
|
||
|
|
||
|
lint:
|
||
|
@golint ./...
|
||
|
@go vet ./...
|
||
|
|
||
|
test:
|
||
|
go test ${GOTEST_ARGS} ./...
|
||
|
|