From 98527ba5f4842359ad2f494fb3db19e8cea7c7c6 Mon Sep 17 00:00:00 2001 From: Garrett D'Amore Date: Sun, 6 Aug 2017 17:20:58 -0700 Subject: [PATCH] Update to stop testing against "old" golang. We test 1.5 and newer only. Arguably we could probably stop testing anything older than 1.7, but some folks will still be using older versions of golang. Note that 1.3 is definitely busted. --- .travis.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index cfc7547..e705d7a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,8 @@ language: go go: - - 1.3 - - 1.5 - - tip + - 1.5.x + - 1.6.x + - 1.7.x + - 1.8.x + - master