blob: ada5ebdcc9c6070cf71f11b8c675f126fea4a591 [file] [log] [blame]
Don Newton7577f072020-01-06 12:41:11 -05001language: 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)