From 428150a1339bfaa72f28c42a6331a2412944da28 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Mon, 6 May 2019 16:33:24 +0200 Subject: [PATCH] Switch to using Go modules --- .travis.yml | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1280af4..3a16e62 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,25 +5,21 @@ os: - osx go: - - 1.4 - - 1.5.x - - 1.6.x - - 1.7.x - - 1.8.x - - 1.9.x - - 1.10.x + - 1.11.x + - 1.12.x - tip matrix: - exclude: - - os: osx - go: 1.4 - - os: osx - go: 1.5.x - - os: osx - go: 1.6.x + allow_failures: + - go: tip + +env: + global: + GO111MODULE=on notifications: email: on_success: change on_failure: always + +script: go build