From 38f2d17c3e4679a930cdabcddd314019aab421c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Olivier=20Mengu=C3=A9?= Date: Tue, 7 Jul 2020 00:24:24 +0200 Subject: [PATCH] Travis-CI: add Go 1.14.x, change order of Go versions Changes in Go versions for the Travis-CI builds: - reverse order of Go versions so the latest ones are checked first - add Go 1.14.x (latest stable) at the first position - use 'tip' instead of 'master' (like https://tip.golang.org) and move it just after 1.14.x --- .travis.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index afc7c09b..a72d6fdc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,12 +9,13 @@ addons: update: true go: - - 1.9.x - - 1.10.x - - 1.11.x - - 1.12.x + - 1.14.x + - tip - 1.13.x - - master + - 1.12.x + - 1.11.x + - 1.10.x + - 1.9.x before_install: - |