2018-11-24 16:17:49 -08:00
|
|
|
language: go
|
|
|
|
|
go:
|
2019-01-09 00:27:22 +01:00
|
|
|
- 1.x
|
2018-12-05 00:49:12 -08:00
|
|
|
install:
|
|
|
|
|
- ./script/bootstrap
|
2018-11-24 16:17:49 -08:00
|
|
|
script:
|
2018-12-11 22:31:15 -08:00
|
|
|
- go build ./...
|
2018-12-26 17:11:54 -08:00
|
|
|
- go test -bench . ./...
|
2019-01-02 20:41:59 -08:00
|
|
|
- ./script/coverage
|
2018-12-11 22:31:15 -08:00
|
|
|
- ./script/lint
|
2019-01-08 18:49:53 -08:00
|
|
|
after_success:
|
2019-01-09 21:51:20 -08:00
|
|
|
- bash <(curl -s https://codecov.io/bash) -F unittests -f unittests.coverprofile
|
|
|
|
|
- bash <(curl -s https://codecov.io/bash) -F integration -f integration.coverprofile
|