introducing circleci (#31)

Based on the dev meeting we are moving to circleci
This commit is contained in:
Carlos Tadeu Panato Junior 2019-03-06 19:03:52 +01:00 committed by Hanzei
parent c415b6b7b8
commit cf8dcecdf2
4 changed files with 34 additions and 12 deletions

View file

@ -52,7 +52,9 @@ endif
govet:
ifneq ($(HAS_SERVER),)
@echo Running govet
@$(GO) vet -shadow $$(go list ./server/...) || exit 1
$(GO) get golang.org/x/tools/go/analysis/passes/shadow/cmd/shadow
$(GO) vet $$(go list ./server/...)
$(GO) vet -vettool=$(GOPATH)/bin/shadow $$(go list ./server/...)
@echo Govet success
endif