Skip to content

Commit

Permalink
fix(travis-ci): Remove older versions of go (#516)
Browse files Browse the repository at this point in the history
Remove older versions of go from travis config due to the testing
dependency testify requiring errors.Is which is only available in go
1.13 and above.

Also switch to master from tip which is the new standard for travis
on golang..
  • Loading branch information
stevenh authored Sep 19, 2020
1 parent efddc00 commit 6f8b898
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,13 @@ services:
- redis-server

go:
- 1.9.x
- 1.10.x
- 1.11.x
- 1.12.x
- 1.13.x
- 1.14.x
- tip
- master

matrix:
allow_failures:
- go: tip
- go: master

script:
- go get -t -v ./...
Expand Down

0 comments on commit 6f8b898

Please sign in to comment.