mirror of
https://github.com/42wim/matterbridge
synced 2024-11-03 15:40:24 +00:00
17 lines
262 B
YAML
17 lines
262 B
YAML
|
language: go
|
||
|
|
||
|
go:
|
||
|
- 1.14.x
|
||
|
- tip
|
||
|
|
||
|
sudo: false
|
||
|
|
||
|
before_install:
|
||
|
- go get -t -v ./...
|
||
|
|
||
|
script:
|
||
|
- go test -race -coverprofile=coverage.txt -covermode=atomic
|
||
|
|
||
|
after_success:
|
||
|
- bash <(curl -s https://codecov.io/bash) -t 6cf6f7ab-26e6-429c-ac44-f0ad85c1e586
|