Skip to content

Commit

Permalink
Add CI test for Go 1.14 and Go tip that could fail
Browse files Browse the repository at this point in the history
Adds CI tests for Go 1.14. In addition to Go tip that is allowed to fail. Go tip tests are helpful for identifying potentially bugs in the unreleased Go version, or potential incorrect assumptions made about the behavior of the standard library.
  • Loading branch information
jasdel committed Mar 10, 2020
1 parent 2d053f8 commit 4ece79d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ go:
- 1.11.x
- 1.12.x
- 1.13.x
- 1.14.x
- tip

allow_failures:
- go: tip

install: go get -v -t ./...
script: make test

0 comments on commit 4ece79d

Please sign in to comment.