discordmuffin/.travis.yml
2016-10-04 20:12:36 -07:00

13 lines
267 B
YAML

language: go
go:
- 1.6
- tip
install:
- go get github.com/bwmarrin/discordgo
- go get -v .
- go get -v github.com/golang/lint/golint
script:
- diff <(gofmt -d .) <(echo -n)
- go vet -x ./...
- golint ./...
- go test -v -race ./...