2016-12-28 23:30:14 -02:00
|
|
|
language: go
|
2017-02-23 14:24:30 -03:00
|
|
|
go: 1.8
|
2017-04-15 15:41:41 -03:00
|
|
|
install:
|
|
|
|
- make setup
|
|
|
|
- gem install fpm
|
2017-01-02 14:19:03 -02:00
|
|
|
script:
|
2017-03-22 21:17:49 -03:00
|
|
|
- make test
|
2017-04-21 16:33:55 -03:00
|
|
|
- test -n "$TRAVIS_TAG" || go run ./cmd/goreleaser/main.go --skip-validate --skip-publish
|
2017-01-21 19:21:42 -02:00
|
|
|
after_success:
|
2017-02-07 17:00:46 -02:00
|
|
|
- go get github.com/mattn/goveralls
|
|
|
|
- goveralls -coverprofile=coverage.out -service=travis-ci -repotoken="$COVERALLS_TOKEN"
|
2017-04-21 15:25:32 -03:00
|
|
|
- test -n "$TRAVIS_TAG" && go run ./cmd/goreleaser/main.go
|
2016-12-28 23:30:14 -02:00
|
|
|
notifications:
|
2017-01-02 10:45:05 -02:00
|
|
|
email: false
|