Skip to content

Instantly share code, notes, and snippets.

@tamalsaha
Created March 13, 2018 21:14
Show Gist options
  • Save tamalsaha/2ee48c571d2c1f2353cf298630853278 to your computer and use it in GitHub Desktop.
Save tamalsaha/2ee48c571d2c1f2353cf298630853278 to your computer and use it in GitHub Desktop.
travis + glide
language: go
go:
- 1.x
- tip
install:
- go get -v github.com/Masterminds/glide
- cd $GOPATH/src/github.com/Masterminds/glide && git checkout tags/v0.13.1 && go install && cd -
- glide install -v
script:
- go build ./...
- ./hack/coverage.sh
after_success:
- bash <(curl -s https://codecov.io/bash)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment