From: Abhishek Chanda Date: Thu, 25 Feb 2016 06:32:08 +0000 (-0800) Subject: Tweak the travis file X-Git-Url: https://git.halfball.org/?a=commitdiff_plain;h=c5f7cc8501f0436c96545bcc56f56911d4dbe169;p=plugins.git Tweak the travis file - Build against more versions of Go - Explicitely specify go versions --- diff --git a/.travis.yml b/.travis.yml index ba206fd..34249a2 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