Skip to content

Commit

Permalink
drop Go 1.9 and 1.10 from CI; add 1.13 and 1.14 (#144)
Browse files Browse the repository at this point in the history
  • Loading branch information
jhump authored Apr 1, 2020
1 parent 0218a7d commit 2af4087
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ sudo: false

matrix:
include:
- go: 1.9.x
- go: 1.10.x
# TODO: update the version used to vet to Go 1.13
- go: 1.11.x
env:
- GO111MODULE=off
Expand All @@ -15,7 +14,18 @@ matrix:
env: GO111MODULE=off
- go: 1.12.x
env: GO111MODULE=on
- go: 1.13.x
env:
- GO111MODULE=on
- GOPROXY=direct
- go: 1.14.x
env:
- GO111MODULE=on
- GOPROXY=direct
- go: tip
env:
- GO111MODULE=on
- GOPROXY=direct

script:
- if [[ "$VET" = 1 ]]; then make ci; else make deps test; fi

0 comments on commit 2af4087

Please sign in to comment.