blob: 0f3769e5fa6b28f008e928d77ee93cf7aa1df670 [file] [log] [blame]
khenaidooac637102019-01-14 15:44:34 -05001sudo: false
2language: go
3go_import_path: go.uber.org/atomic
4
5go:
Scott Baker8461e152019-10-01 14:44:30 -07006 - 1.11.x
7 - 1.12.x
8
9matrix:
10 include:
11 - go: 1.12.x
12 env: NO_TEST=yes LINT=yes
khenaidooac637102019-01-14 15:44:34 -050013
14cache:
15 directories:
16 - vendor
17
18install:
19 - make install_ci
20
21script:
Scott Baker8461e152019-10-01 14:44:30 -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
Stephane Barbarie260a5632019-02-26 16:12:49 -050025
26after_success:
27 - bash <(curl -s https://codecov.io/bash)