blob: a3321fa2dc0478d0181672b508274707f4a46f7f [file] [log] [blame]
William Kurkianea869482019-04-09 15:16:11 -04001language: go
2sudo: false
3go:
4 - 1.9.x
5 - 1.10.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)