From a6111c9ae6392b3449aa6cdeee072e509cf5b38f Mon Sep 17 00:00:00 2001 From: Kevin Stock Date: Sun, 4 Jun 2017 21:10:05 -0700 Subject: [PATCH] Updates the Travis CI testing matrix Change requested by @elithrar to improve the Go versions tested against. 1.x will always point to the latest version. Master points to the latest rev, which is useful for identifying breaking changes in upcoming versions. --- .travis.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index fbc847f..3ec3993 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,13 @@ language: go sudo: false -go: - - 1.7 - - 1.8 - - tip +matrix: + include: + - go: 1.7 + - go: 1.8 + - go: 1.x + - go: master + allow_failures: + - go: master script: - go get -t -v ./... - diff -u <(echo -n) <(gofmt -d -s .)