blob: 702fa5b72513d2d31f2aea9ba2f65219de6ba7ef [file] [log] [blame]
Girish Kumar2ed051b2020-07-28 16:35:25 +00001sudo: false
2language: go
3go:
4 - 1.8.x
5env:
6 - DEP_VERSION="0.3.2"
7
8before_install:
9 # Download the binary to bin folder in $GOPATH
10 - curl -L -s https://github.com/golang/dep/releases/download/v${DEP_VERSION}/dep-linux-amd64 -o $GOPATH/bin/dep
11 # Make the binary executable
12 - chmod +x $GOPATH/bin/dep
13
14install:
15 - dep ensure
16
17script:
18 - make test
19
20after_success:
21 - bash <(curl -s https://codecov.io/bash)