mirror of
https://github.com/42wim/matterbridge
synced 2024-11-07 09:20:23 +00:00
26 lines
339 B
YAML
26 lines
339 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.7.x
|
|
- 1.8.x
|
|
- 1.9.x
|
|
- 1.10.x
|
|
- 1.11.x
|
|
- tip
|
|
|
|
before_install:
|
|
- export PATH=$HOME/gopath/bin:$PATH
|
|
# install gometalinter
|
|
- curl -L https://git.io/vp6lP | sh
|
|
|
|
script:
|
|
- PATH=$PWD/bin:$PATH gometalinter ./...
|
|
- go test -race -cover ./...
|
|
|
|
matrix:
|
|
allow_failures:
|
|
- go: tip
|
|
|
|
git:
|
|
depth: 10
|