drop Go 1.9 and 1.10 from CI; add 1.13 and 1.14 (#144)
This commit is contained in:
parent
0218a7db67
commit
2af40876fc
14
.travis.yml
14
.travis.yml
|
|
@ -3,8 +3,7 @@ sudo: false
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- go: 1.9.x
|
# TODO: update the version used to vet to Go 1.13
|
||||||
- go: 1.10.x
|
|
||||||
- go: 1.11.x
|
- go: 1.11.x
|
||||||
env:
|
env:
|
||||||
- GO111MODULE=off
|
- GO111MODULE=off
|
||||||
|
|
@ -15,7 +14,18 @@ matrix:
|
||||||
env: GO111MODULE=off
|
env: GO111MODULE=off
|
||||||
- go: 1.12.x
|
- go: 1.12.x
|
||||||
env: GO111MODULE=on
|
env: GO111MODULE=on
|
||||||
|
- go: 1.13.x
|
||||||
|
env:
|
||||||
|
- GO111MODULE=on
|
||||||
|
- GOPROXY=direct
|
||||||
|
- go: 1.14.x
|
||||||
|
env:
|
||||||
|
- GO111MODULE=on
|
||||||
|
- GOPROXY=direct
|
||||||
- go: tip
|
- go: tip
|
||||||
|
env:
|
||||||
|
- GO111MODULE=on
|
||||||
|
- GOPROXY=direct
|
||||||
|
|
||||||
script:
|
script:
|
||||||
- if [[ "$VET" = 1 ]]; then make ci; else make deps test; fi
|
- if [[ "$VET" = 1 ]]; then make ci; else make deps test; fi
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue