1sudo: false
2language: go
3go_import_path: go.uber.org/multierr
4
5env:
6  global:
7    - GO15VENDOREXPERIMENT=1
8
9go:
10  - 1.7
11  - 1.8
12  - tip
13
14cache:
15  directories:
16    - vendor
17
18before_install:
19- go version
20
21install:
22- |
23  set -e
24  make install_ci
25
26script:
27- |
28  set -e
29  make lint
30  make test_ci
31
32after_success:
33- bash <(curl -s https://codecov.io/bash)
34