From 71a99921b4ed75328f4f3eb887d4718161ad3017 Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Sat, 23 Jul 2016 17:52:19 -0400 Subject: [PATCH 1/2] Bump tested go versions and (maybe?) take advantage of support for N.x version syntax --- .travis.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 47f25dc..93d3a2e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,18 +7,18 @@ cache: - node_modules go: -- 1.2.2 -- 1.3.3 -- 1.4 -- 1.5.4 -- 1.6.2 +- 1.2.x +- 1.3.x +- 1.4.x +- 1.5.x +- 1.6.x - master matrix: allow_failures: - go: master include: - - go: 1.6.2 + - go: 1.6.x os: osx before_script: From 76fb6d2ab73b2919dd9714784b44389508da96f0 Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Sat, 23 Jul 2016 18:16:45 -0400 Subject: [PATCH 2/2] Pin testing on go 1.4.2 since 1.4.3 is lacking `vet` --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 93d3a2e..d1d820d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,7 +9,7 @@ cache: go: - 1.2.x - 1.3.x -- 1.4.x +- 1.4.2 - 1.5.x - 1.6.x - master @@ -23,7 +23,7 @@ matrix: before_script: - go get github.com/urfave/gfmrun/... -- go get golang.org/x/tools/cmd/goimports || true +- go get golang.org/x/tools/... || true - if [ ! -f node_modules/.bin/markdown-toc ] ; then npm install markdown-toc ; fi