blob: 52c01e7f1267e729400afae5a7997ea28b29c21d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
language: go
go:
- "1.x"
- "1.8"
- "1.10.x"
- master
before_install:
- make sqlite
script:
- go test -race -coverprofile=coverage.txt -covermode=atomic
after_success:
- bash <(curl -s https://codecov.io/bash)
|