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