From 16551ffc5018d40335cd4a249df55292827aa0ce Mon Sep 17 00:00:00 2001 From: Mathieu Cornic Date: Tue, 29 Aug 2017 22:40:56 +0200 Subject: [PATCH] Feat/go dep (#19) * feat: add go dep * feat: add go dep --- .travis.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index d121d46..e93feac 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,13 +1,16 @@ language: go go: + - 1.6 - 1.7 - 1.8 - master install: -- go get -u github.com/golang/dep/cmd/dep -- dep ensure +- wget https://github.com/golang/dep/releases/download/v0.3.0/dep-linux-amd64.zip +- unzip dep-linux-amd64.zip +- chmod +x dep +- ./dep ensure - go get -u github.com/alecthomas/gometalinter - gometalinter -u -i -f