mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 07:30:28 +00:00
22 lines
243 B
YAML
22 lines
243 B
YAML
|
language: go
|
||
|
|
||
|
go:
|
||
|
- 1.7.x
|
||
|
- 1.8.x
|
||
|
- 1.9.x
|
||
|
- tip
|
||
|
|
||
|
before_install:
|
||
|
- export PATH=$HOME/gopath/bin:$PATH
|
||
|
|
||
|
script:
|
||
|
- go test -race ./...
|
||
|
- go test -cover ./...
|
||
|
|
||
|
matrix:
|
||
|
allow_failures:
|
||
|
- go: tip
|
||
|
|
||
|
git:
|
||
|
depth: 10
|