diff options
author | Jakob Unterwurzacher | 2018-02-27 18:01:24 +0100 |
---|---|---|
committer | Jakob Unterwurzacher | 2018-02-27 18:01:24 +0100 |
commit | ac8f8bf4328d6d5c346004c7c0ef8e651aeaef93 (patch) | |
tree | 00548540bf4b0121b4948a12d0baa015ba75a353 | |
parent | 7f6e4ba47a49c9cb160f83f38460529056c76a96 (diff) |
travis ci: switch to "1.10.x" notation
"1.10" does not work as expected because it
is parsed as a floating point number:
https://github.com/travis-ci/travis-ci/issues/9247
Added benefit is that we always get the latest point
release.
-rw-r--r-- | .travis.yml | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/.travis.yml b/.travis.yml index d5bfa43..d3b66bd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,12 +6,13 @@ git: # Build with the lastest versions of Go 1.5 and later # See https://golang.org/dl/ go: - - 1.5.4 - - 1.6.4 - - 1.7.6 - - 1.8.5 - - 1.9.2 - - 1.10 + - 1.5.x + - 1.6.x + - 1.7.x + - 1.8.x + - 1.9.x + - 1.10.x + - stable install: - go get . |