2019-02-23 13:29:15 +00:00

10 lines
158 B
Makefile

.PHONY: all
.DEFAULT_GOAL := all
all:
# Only run these tests if secure credentials exist
ifeq ($(TRAVIS_SECURE_ENV_VARS),true)
go get -t .
go test .
endif