blob: bb83c6670df63f0bb25d0e55141f9fdf953cacc4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
language: go
dist: xenial
go:
- '1.10'
- '1.11'
- '1.12'
- '1.13'
- 'tip'
script:
- go test -coverpkg=./... -coverprofile=coverage.info -timeout=5s
- bash <(curl -s https://codecov.io/bash)
|