summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/matterbridge/discordgo/.travis.yml
blob: b88f11eed854dc7e42e36d56ac2cdaa8fd22311a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
language: go
go:
    - 1.10.x
    - 1.11.x
    - 1.12.x
    - 1.13.x
install:
    - go get github.com/bwmarrin/discordgo
    - go get -v .
    - go get -v golang.org/x/lint/golint
script:
    - diff <(gofmt -d .) <(echo -n)
    - go vet -x ./...
    - golint -set_exit_status ./...
    - go test -v -race ./...