mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 15:40:30 +00:00
f8dc24bc09
Commit ffa9956c9b
got merged in.
20 lines
316 B
YAML
20 lines
316 B
YAML
language: go
|
|
sudo: false
|
|
|
|
matrix:
|
|
include:
|
|
- go: 1.7.x
|
|
- go: 1.8.x
|
|
- go: 1.9.x
|
|
- go: 1.10.x
|
|
- go: 1.11.x
|
|
- go: tip
|
|
allow_failures:
|
|
- go: tip
|
|
|
|
script:
|
|
- go get -t -v ./...
|
|
- diff -u <(echo -n) <(gofmt -d .)
|
|
- go vet $(go list ./... | grep -v /vendor/)
|
|
- go test -v -race ./...
|