Test against 1.6 and 1.7, make lint fatal again.

This commit is contained in:
Bruce Marriner 2016-12-08 10:16:37 -06:00
parent 24a51f654f
commit e650021037

View file

@ -1,7 +1,7 @@
language: go language: go
go: go:
- 1.6 - 1.6
- tip - 1.7
install: install:
- go get github.com/bwmarrin/discordgo - go get github.com/bwmarrin/discordgo
- go get -v . - go get -v .
@ -9,5 +9,5 @@ install:
script: script:
- diff <(gofmt -d .) <(echo -n) - diff <(gofmt -d .) <(echo -n)
- go vet -x ./... - go vet -x ./...
- golint ./... - golint -set_exit_status ./...
- go test -v -race ./... - go test -v -race ./...