5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-03-29 13:13:46 +00:00
2020-09-04 23:29:13 +02:00

18 lines
337 B
YAML

language: go
go:
- 1.11.x
- 1.12.x
- 1.13.x
- 1.14.x
env:
- GO111MODULE=on
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 ./...