mirror of
https://github.com/42wim/matterbridge
synced 2024-11-07 09:20:23 +00:00
24 lines
282 B
YAML
24 lines
282 B
YAML
sudo: false
|
|
language: go
|
|
go_import_path: go.uber.org/atomic
|
|
|
|
go:
|
|
- 1.7
|
|
- 1.8
|
|
- 1.9
|
|
|
|
cache:
|
|
directories:
|
|
- vendor
|
|
|
|
install:
|
|
- make install_ci
|
|
|
|
script:
|
|
- make test_ci
|
|
- scripts/test-ubergo.sh
|
|
- make lint
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|