From 797adeefdeb3f40fe4848f62492371cf7425cf2b Mon Sep 17 00:00:00 2001 From: Robert M Date: Wed, 24 Oct 2018 18:15:31 -0400 Subject: [PATCH] Fixed travis test failing for older versions of go (#604) * Fixed travis test failing for older versions of go * changed supported go version --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index fe626fc..2656ae5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,12 +1,12 @@ language: go go: - - 1.7.x - - 1.8.x - 1.9.x + - 1.10.x + - 1.11.x install: - go get github.com/bwmarrin/discordgo - go get -v . - - go get -v github.com/golang/lint/golint + - go get -v golang.org/x/lint/golint script: - diff <(gofmt -d .) <(echo -n) - go vet -x ./...