blob: 3370d5f4088e52a099f239157acebb33c210015a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
language: go
go:
- 1.x
os:
- linux
- osx
script:
- go test -test.v -coverprofile=coverage.out -covermode=count
after_success:
- bash <(curl -s https://codecov.io/bash)
|