From 916a8603f9853f29b2f82814ec8a5717a90eb89b Mon Sep 17 00:00:00 2001 From: Oliver Tonnhofer Date: Fri, 11 Oct 2019 08:59:36 +0200 Subject: [PATCH] travis: build with go 1.13 --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index b951e64..360a317 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,7 +2,7 @@ language: go go: - 1.8 - 1.11 - - 1.12 + - 1.13 - tip matrix: @@ -10,9 +10,9 @@ matrix: - go: tip install: - - if [[ $TRAVIS_GO_VERSION == 1.12* ]]; then go get github.com/mattn/goveralls; fi + - if [[ $TRAVIS_GO_VERSION == 1.13* ]]; then go get github.com/mattn/goveralls; fi script: - make test # only run test-coverage for one go version - - if [[ $TRAVIS_GO_VERSION == 1.12* ]]; then make test-coverage; $HOME/gopath/bin/goveralls -coverprofile=magnacarto.coverprofile -service=travis-ci; fi + - if [[ $TRAVIS_GO_VERSION == 1.13* ]]; then make test-coverage; $HOME/gopath/bin/goveralls -coverprofile=magnacarto.coverprofile -service=travis-ci; fi