17 lines
217 B
YAML
17 lines
217 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.13.x
|
|
- 1.14.x
|
|
- 1.15.x
|
|
- 1.16.x
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
|
|
script:
|
|
- go test -coverprofile=coverage.txt -covermode=atomic
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|