blob: ada5ebdcc9c6070cf71f11b8c675f126fea4a591 [file] [log] [blame]
William Kurkianea869482019-04-09 15:16:11 -04001language: go
2sudo: false
3go:
Abhilash S.L3b494632019-07-16 15:51:09 +05304 - 1.11.x
5 - 1.12.x
William Kurkianea869482019-04-09 15:16:11 -04006go_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)