mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-30 10:47:14 -06:00
13 lines
213 B
Makefile
13 lines
213 B
Makefile
VERSION=0.1
|
|
|
|
.PHONY : test cover deps
|
|
test:
|
|
godep go test ./...
|
|
cover:
|
|
./cover.sh
|
|
deps:
|
|
go get github.com/tools/godep
|
|
go get golang.org/x/tools/cmd/goimports
|
|
go get github.com/mattn/goveralls
|
|
godep restore
|