blob: 8d5b75e41e751c69ea736f5e40b48c45dfef93d9 [file] [log] [blame]
Girish Gowdra631ef3d2020-06-15 10:45:52 -07001language: go
2
3matrix:
4 include:
5 - go: "1.11.x"
6 - go: "1.12.x"
7 - go: "tip"
8 env:
9 - LINT=true
10 - COVERAGE=true
11
12install:
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
16script:
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