Skip to content

Commit

Permalink
Use strings for Go versions
Browse files Browse the repository at this point in the history
YAML sees these as numbers so 1.10 is seen as 1.1 which is not the
version we want to target.
  • Loading branch information
iszak committed Feb 1, 2019
1 parent ac769a6 commit 199b101
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
language: go

go:
- 1.10
- 1.11
- tip
- "1.10"
- "1.11"
- "tip"

matrix:
allow_failures:
Expand Down

0 comments on commit 199b101

Please sign in to comment.