1language: go
2sudo: false
3go:
4  - 1.11.x
5  - 1.12.x
6go_import_path: go.uber.org/zap
7env:
8  global:
9    - TEST_TIMEOUT_SCALE=10
10cache:
11  directories:
12    - vendor
13install:
14  - make dependencies
15script:
16  - make lint
17  - make test
18  - make bench
19after_success:
20  - make cover
21  - bash <(curl -s https://codecov.io/bash)
22