2019-07-24 07:58:01 +00:00
|
|
|
language: go
|
|
|
|
sudo: false
|
2019-11-25 20:16:00 +00:00
|
|
|
|
2019-07-24 07:58:01 +00:00
|
|
|
go_import_path: go.uber.org/zap
|
|
|
|
env:
|
|
|
|
global:
|
|
|
|
- TEST_TIMEOUT_SCALE=10
|
2019-11-25 20:16:00 +00:00
|
|
|
- GO111MODULE=on
|
|
|
|
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- go: 1.12.x
|
|
|
|
- go: 1.13.x
|
|
|
|
env: LINT=1
|
|
|
|
|
2019-07-24 07:58:01 +00:00
|
|
|
script:
|
2019-11-25 20:16:00 +00:00
|
|
|
- test -z "$LINT" || make lint
|
2019-07-24 07:58:01 +00:00
|
|
|
- make test
|
|
|
|
- make bench
|
2019-11-25 20:16:00 +00:00
|
|
|
|
2019-07-24 07:58:01 +00:00
|
|
|
after_success:
|
|
|
|
- make cover
|
|
|
|
- bash <(curl -s https://codecov.io/bash)
|