From 2c6e80549ef2220d5672258bed95f0d4df404919 Mon Sep 17 00:00:00 2001 From: beorn7 Date: Wed, 19 Sep 2018 12:24:24 +0200 Subject: [PATCH] Add Go 1.11. Since the staticcheck support for older Go versions will disappear, update the exclusion regexp. Signed-off-by: beorn7 --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index e7076b3..a5cbf75 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,7 +6,8 @@ go: - 1.8.x - 1.9.x - 1.10.x + - 1.11.x script: - make check_license style unused test-short - - if [[ ! $TRAVIS_GO_VERSION =~ ^1\.(7|8)\.[x0-9]+$ ]]; then make staticcheck; fi + - if [[ ! $TRAVIS_GO_VERSION =~ ^1\.(7|8|9)\.[x0-9]+$ ]]; then make staticcheck; fi