diff options
author | Olivier Mengué <dolmen@cpan.org> | 2020-07-21 09:59:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-21 16:59:02 +0900 |
commit | 979ea59e5acfbb2fe450df65138e34e68f92c541 (patch) | |
tree | 713fd57b0997f2bc5f5d13514e7a0cbac61d3e79 | |
parent | Update README.md (diff) | |
download | golite-979ea59e5acfbb2fe450df65138e34e68f92c541.tar.gz golite-979ea59e5acfbb2fe450df65138e34e68f92c541.tar.xz |
Travis-CI: add Go 1.14.x, change order of Go versions (#830)
Changes in Go versions for the Travis-CI builds:
- reverse order of Go versions so the latest ones are checked first
- add Go 1.14.x (latest stable) at the first position
- use 'tip' instead of 'master' (like https://tip.golang.org) and move
it just after 1.14.x
-rw-r--r-- | .travis.yml | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index afc7c09..a72d6fd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,12 +9,13 @@ addons: update: true go: - - 1.9.x - - 1.10.x - - 1.11.x - - 1.12.x + - 1.14.x + - tip - 1.13.x - - master + - 1.12.x + - 1.11.x + - 1.10.x + - 1.9.x before_install: - | |