khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 1 | sudo: false |
| 2 | language: go |
| 3 | go_import_path: go.uber.org/atomic |
| 4 | |
| 5 | go: |
Scott Baker | 8461e15 | 2019-10-01 14:44:30 -0700 | [diff] [blame] | 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 |
khenaidoo | ac63710 | 2019-01-14 15:44:34 -0500 | [diff] [blame] | 13 | |
| 14 | cache: |
| 15 | directories: |
| 16 | - vendor |
| 17 | |
| 18 | install: |
| 19 | - make install_ci |
| 20 | |
| 21 | script: |
Scott Baker | 8461e15 | 2019-10-01 14:44:30 -0700 | [diff] [blame] | 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 |
Stephane Barbarie | 260a563 | 2019-02-26 16:12:49 -0500 | [diff] [blame] | 25 | |
| 26 | after_success: |
| 27 | - bash <(curl -s https://codecov.io/bash) |