2019-03-26 21:50:42 +00:00
|
|
|
language: go
|
|
|
|
sudo: false
|
|
|
|
|
|
|
|
go:
|
2020-02-10 20:14:27 +00:00
|
|
|
- "1.12.x"
|
|
|
|
- "1.13.x"
|
2019-03-26 21:50:42 +00:00
|
|
|
- tip
|
|
|
|
|
2019-12-16 21:31:27 +00:00
|
|
|
env:
|
|
|
|
- GO111MODULE=on
|
2019-03-26 21:50:42 +00:00
|
|
|
|
|
|
|
script:
|
2020-09-30 19:57:24 +00:00
|
|
|
- go generate ./... && test `git ls-files --modified | wc -l` = 0
|
2019-03-26 21:50:42 +00:00
|
|
|
- go test -race -v -bench=. -coverprofile=coverage.txt -covermode=atomic ./...
|
|
|
|
|
|
|
|
after_success:
|
|
|
|
- bash <(curl -s https://codecov.io/bash)
|