blob: 0025f29e4ef8247e9492c4143c91e54245d269bb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
language: go
go:
- "1.9"
- "1.10.x"
install:
- make install
script:
- make test
- go test -race -coverprofile=coverage.txt -covermode=atomic
after_success:
- bash <(curl -s https://codecov.io/bash)
|