Don Newton | 7577f07 | 2020-01-06 12:41:11 -0500 | [diff] [blame] | 1 | sudo: false |
2 | language: go | ||||
3 | go_import_path: go.uber.org/atomic | ||||
4 | |||||
5 | go: | ||||
6 | - 1.11.x | ||||
7 | - 1.12.x | ||||
8 | |||||
9 | matrix: | ||||
10 | include: | ||||
11 | - go: 1.12.x | ||||
12 | env: NO_TEST=yes LINT=yes | ||||
13 | |||||
14 | cache: | ||||
15 | directories: | ||||
16 | - vendor | ||||
17 | |||||
18 | install: | ||||
19 | - make install_ci | ||||
20 | |||||
21 | script: | ||||
22 | - test -n "$NO_TEST" || make test_ci | ||||
23 | - test -n "$NO_TEST" || scripts/test-ubergo.sh | ||||
24 | - test -z "$LINT" || make install_lint lint | ||||
25 | |||||
26 | after_success: | ||||
27 | - bash <(curl -s https://codecov.io/bash) |