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.
This commit is contained in:
Jakob Unterwurzacher 2018-02-27 18:01:24 +01:00
parent 7f6e4ba47a
commit ac8f8bf432
1 changed files with 7 additions and 6 deletions

View File

@ -6,12 +6,13 @@ git:
# Build with the lastest versions of Go 1.5 and later # Build with the lastest versions of Go 1.5 and later
# See https://golang.org/dl/ # See https://golang.org/dl/
go: go:
- 1.5.4 - 1.5.x
- 1.6.4 - 1.6.x
- 1.7.6 - 1.7.x
- 1.8.5 - 1.8.x
- 1.9.2 - 1.9.x
- 1.10 - 1.10.x
- stable
install: install:
- go get . - go get .