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