From b3555cb244bee8dcba0d0a04d40486c5dfe61cc9 Mon Sep 17 00:00:00 2001 From: Michael Weibel <307427+mweibel@users.noreply.github.com> Date: Fri, 24 Jul 2020 10:02:51 +0200 Subject: [PATCH] fix tested go versions (#25) * fix tested go versions * remove 1.12 --- .travis.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 97aa1a4..c5e4190 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,7 @@ language: go go: - - "1.7" - - "1.8" - - "1.9" - - "1.10" - - "1.11" + - "1.13" + - "1.14" - master before_install: @@ -18,11 +15,11 @@ script: jobs: include: - - name: "Linting with Go 1.11" + - name: "Linting with Go 1.14" script: - go get -u golang.org/x/tools/cmd/goimports - FILES=`find . -iname '*.go' -type f -not -path "./vendor/*"` - gofmt -d $FILES - go tool vet $FILES || echo "\n\nunexported field test is failing? that's ok. More failing? not ok.\n\n" - goimports -d $FILES - go: "1.11" \ No newline at end of file + go: "1.14"