summaryrefslogtreecommitdiffstats
path: root/vendor/go.uber.org/atomic/.travis.yml
blob: 58957222a3312c8d5967c3761c6609c1fbbec958 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
sudo: false
language: go
go_import_path: go.uber.org/atomic

go:
  - 1.7
  - 1.8
  - 1.9

cache:
  directories:
    - vendor

install:
  - make install_ci

script:
  - make test_ci
  - scripts/test-ubergo.sh
  - make lint

after_success:
  - bash <(curl -s https://codecov.io/bash)