blob: b950e42965f00b5cb416bf64e0b8e929c7fd1c58 [file] [log] [blame]
mpagenkoaf801632020-07-03 10:00:42 +00001language: go
2
3matrix:
4 include:
khenaidoo7d3c5582021-08-11 18:09:44 -04005 - go: "1.13.x"
6 - go: "1.14.x"
mpagenkoaf801632020-07-03 10:00:42 +00007 - 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