mirror of
https://git.uploadfilter24.eu/lerentis/terraform-provider-gitea.git
synced 2024-11-05 02:18:12 +00:00
13 lines
175 B
Makefile
13 lines
175 B
Makefile
|
|
HAS_GLIDE := $(shell command -v glide;)
|
|
|
|
.PHONY: test
|
|
test:
|
|
go test -v .
|
|
|
|
.PHONY: setup
|
|
setup:
|
|
ifndef HAS_GLIDE
|
|
go get -u github.com/Masterminds/glide
|
|
endif
|
|
glide install
|