Skip to content

Commit

Permalink
travis: build with go 1.13
Browse files Browse the repository at this point in the history
  • Loading branch information
olt committed Oct 11, 2019
1 parent 8bc994a commit 916a860
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@ language: go
go:
- 1.8
- 1.11
- 1.12
- 1.13
- tip

matrix:
allow_failures:
- 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

0 comments on commit 916a860

Please sign in to comment.