-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update travis resiliency
- Loading branch information
Yulin Chen
authored
Dec 23, 2019
1 parent
07df250
commit 31e96aa
Showing
1 changed file
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
language: go | ||
go: | ||
- 1.7.x | ||
- 1.8.x | ||
- 1.9.x | ||
- 1.11.x | ||
- 1.12.x | ||
- 1.13.x | ||
- tip | ||
before_install: | ||
- go get github.com/mattn/goveralls | ||
- travis_retry go get github.com/mattn/goveralls | ||
script: | ||
- go test -v $(go list ./... | grep -v /vendor/) | ||
- $HOME/gopath/bin/goveralls -service=travis-ci | ||
- travis_retry go test -v ./... | ||
- travis_retry $HOME/gopath/bin/goveralls -service=travis-ci |