From c5f7cc8501f0436c96545bcc56f56911d4dbe169 Mon Sep 17 00:00:00 2001 From: Abhishek Chanda Date: Wed, 24 Feb 2016 22:32:08 -0800 Subject: [PATCH] Tweak the travis file - Build against more versions of Go - Explicitely specify go versions --- .travis.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index ba206fd4..34249a22 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,14 +1,15 @@ language: go -matrix: - include: - - go: 1.4 - env: TOOLS_CMD=golang.org/x/tools/cmd + +go: + - 1.4 + - 1.5.3 + - 1.6 + +env: + - TOOLS_CMD=golang.org/x/tools/cmd install: - go get ${TOOLS_CMD}/vet script: - ./test - -notifications: - email: false