From 0d53fb4744d1b093a19b860ce9c2a9f6f890567f Mon Sep 17 00:00:00 2001 From: Joe Tsai Date: Thu, 24 Sep 2020 16:52:23 -0700 Subject: [PATCH] travis.yml: update tested versions of Go While this module is deprecated, it is still important to ensure that it continues to work with higher versions of Go. Update travis.yml to test up to Go1.15. --- .travis.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.travis.yml b/.travis.yml index 720ef9da4a..0b5166678a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,4 +13,10 @@ matrix: - go: 1.11.x script: go test -tags protolegacy -v ./... - go: 1.12.x + script: go test -tags protolegacy -v ./... + - go: 1.13.x + script: go test -tags protolegacy -v ./... + - go: 1.14.x + script: go test -tags protolegacy -v ./... + - go: 1.15.x script: ./test.bash