From ac8f8bf4328d6d5c346004c7c0ef8e651aeaef93 Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Tue, 27 Feb 2018 18:01:24 +0100 Subject: [PATCH] travis ci: switch to "1.10.x" notation "1.10" does not work as expected because it is parsed as a floating point number: https://github.com/travis-ci/travis-ci/issues/9247 Added benefit is that we always get the latest point release. --- .travis.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index d5bfa43..d3b66bd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,12 +6,13 @@ git: # Build with the lastest versions of Go 1.5 and later # See https://golang.org/dl/ go: - - 1.5.4 - - 1.6.4 - - 1.7.6 - - 1.8.5 - - 1.9.2 - - 1.10 + - 1.5.x + - 1.6.x + - 1.7.x + - 1.8.x + - 1.9.x + - 1.10.x + - stable install: - go get .