blob: 58957222a3312c8d5967c3761c6609c1fbbec958 [file] [log] [blame]
khenaidooac637102019-01-14 15:44:34 -05001sudo: false
2language: go
3go_import_path: go.uber.org/atomic
4
5go:
Stephane Barbarie260a5632019-02-26 16:12:49 -05006 - 1.7
7 - 1.8
8 - 1.9
khenaidooac637102019-01-14 15:44:34 -05009
10cache:
11 directories:
12 - vendor
13
14install:
15 - make install_ci
16
17script:
18 - make test_ci
19 - scripts/test-ubergo.sh
20 - make lint
Stephane Barbarie260a5632019-02-26 16:12:49 -050021
22after_success:
23 - bash <(curl -s https://codecov.io/bash)