2019-01-12 04:58:27 +00:00
|
|
|
language: go
|
|
|
|
sudo: false
|
2019-09-27 21:51:53 +00:00
|
|
|
|
2019-01-12 04:58:27 +00:00
|
|
|
go:
|
2021-03-18 22:40:29 +00:00
|
|
|
- 1.14.x
|
|
|
|
- 1.15.x
|
2019-09-27 21:51:53 +00:00
|
|
|
- tip
|
|
|
|
|
2021-03-18 22:40:29 +00:00
|
|
|
env:
|
|
|
|
- GO111MODULE=on
|
2019-09-27 21:51:53 +00:00
|
|
|
|
2019-01-12 04:58:27 +00:00
|
|
|
script:
|
2021-03-18 22:40:29 +00:00
|
|
|
- go generate ./... && test `git ls-files --modified | wc -l` = 0
|
2019-09-27 21:51:53 +00:00
|
|
|
- go test -race -v -bench=. -coverprofile=coverage.txt -covermode=atomic ./...
|
|
|
|
|
|
|
|
after_success:
|
|
|
|
- bash <(curl -s https://codecov.io/bash)
|