From 1b77bef51e914ac10486d64e74c1b76d76c6f117 Mon Sep 17 00:00:00 2001 From: Chris Gilling Date: Sat, 8 Dec 2018 22:13:01 -0800 Subject: [PATCH 1/2] update travis to use goveralls, and update go versions --- .travis.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f4f458a..f25b637 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,15 @@ language: go go: - - 1.5 + - 1.10 + - 1.11 - tip + +env: + - PATH=$PATH:$GOPATH/bin +before_install: + - go get github.com/mattn/goveralls +install: + - go get -t ./... +script: + - $GOPATH/bin/goveralls -service=travis-ci From 0a5ea39df69d1d7460dbc22c6129b3dbbe862b81 Mon Sep 17 00:00:00 2001 From: Chris Gilling Date: Sat, 8 Dec 2018 22:16:14 -0800 Subject: [PATCH 2/2] .travis.yml: remove go versions for now seems like there is a bug where I put 1.10, and it tried to use 1.1 --- .travis.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index f25b637..574fc8b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,5 @@ language: go -go: - - 1.10 - - 1.11 - - tip - env: - PATH=$PATH:$GOPATH/bin before_install: