blob: 0f3769e5fa6b28f008e928d77ee93cf7aa1df670 [file] [log] [blame]
Scott Bakereee8dd82019-09-24 12:52:34 -07001sudo: false
2language: go
3go_import_path: go.uber.org/atomic
4
5go:
Scott Baker611f6bd2019-10-18 13:45:19 -07006 - 1.11.x
7 - 1.12.x
8
9matrix:
10 include:
11 - go: 1.12.x
12 env: NO_TEST=yes LINT=yes
Scott Bakereee8dd82019-09-24 12:52:34 -070013
14cache:
15 directories:
16 - vendor
17
18install:
19 - make install_ci
20
21script:
Scott Baker611f6bd2019-10-18 13:45:19 -070022 - test -n "$NO_TEST" || make test_ci
23 - test -n "$NO_TEST" || scripts/test-ubergo.sh
24 - test -z "$LINT" || make install_lint lint
Scott Bakereee8dd82019-09-24 12:52:34 -070025
26after_success:
27 - bash <(curl -s https://codecov.io/bash)