From 199b10137eaa5174b69bc59ae3bdea4fb08ab987 Mon Sep 17 00:00:00 2001 From: Iszak Bryan <38895+iszak@users.noreply.github.com> Date: Fri, 1 Feb 2019 17:14:09 +0000 Subject: [PATCH] Use strings for Go versions YAML sees these as numbers so 1.10 is seen as 1.1 which is not the version we want to target. --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index d04bede..41853f6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,9 @@ language: go go: - - 1.10 - - 1.11 - - tip + - "1.10" + - "1.11" + - "tip" matrix: allow_failures: