mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 06:20:28 +00:00
15 lines
300 B
YAML
15 lines
300 B
YAML
|
language: go
|
||
|
go:
|
||
|
- 1.7.x
|
||
|
- 1.8.x
|
||
|
- 1.9.x
|
||
|
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 -set_exit_status ./...
|
||
|
- go test -v -race ./...
|