From 3ce4fc8fe421c3ee73b92bc0235ad0a60ac326ab Mon Sep 17 00:00:00 2001 From: Miek Gieben Date: Thu, 26 Apr 2018 13:03:31 +0100 Subject: [PATCH] Do ' go vet' after we have fetch the repos (#1744) Do ' go vet' after we have fetched the repos --- .travis.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 52445dedc..ec2afbe77 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,7 @@ services: language: go go: - - "1.10" + - "1.10.x" go_import_path: github.com/coredns/coredns diff --git a/Makefile b/Makefile index 4c52b7717..998b88d60 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ coredns: $(CHECKS) CGO_ENABLED=0 $(SYSTEM) go build $(VERBOSE) -ldflags="-s -w -X github.com/coredns/coredns/coremain.GitCommit=$(GITCOMMIT)" -o $(BINARY) .PHONY: check -check: presubmit linter goimports core/zplugin.go core/dnsserver/zdirectives.go godeps +check: presubmit goimports core/zplugin.go core/dnsserver/zdirectives.go godeps linter .PHONY: test test: check