Takahiro Suzuki | 241c10e | 2020-12-17 20:17:57 +0900 | [diff] [blame] | 1 | language: go |
| 2 | |
| 3 | matrix: |
| 4 | include: |
| 5 | - go: "1.11.x" |
| 6 | - go: "1.12.x" |
| 7 | - go: "tip" |
| 8 | env: |
| 9 | - LINT=true |
| 10 | - COVERAGE=true |
| 11 | |
| 12 | install: |
| 13 | - if [ "$LINT" == true ]; then go get -u golang.org/x/lint/golint/... ; else echo 'skipping lint'; fi |
| 14 | - go get -u github.com/stretchr/testify/... |
| 15 | |
| 16 | script: |
| 17 | - make test |
| 18 | - go build ./... |
| 19 | - if [ "$LINT" == true ]; then make lint ; else echo 'skipping lint'; fi |
| 20 | - if [ "$COVERAGE" == true ]; then make cover && bash <(curl -s https://codecov.io/bash) ; else echo 'skipping coverage'; fi |