1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-06 03:13:48 +02:00
goreleaser/.travis.yml
2017-04-21 16:20:12 -03:00

15 lines
413 B
YAML

language: go
go: 1.8
install:
- make setup
- gem install fpm
script:
- make test
- test -z "$TRAVIS_TAG" && go run ./cmd/goreleaser/main.go --skip-validate --skip-publish
after_success:
- go get github.com/mattn/goveralls
- goveralls -coverprofile=coverage.out -service=travis-ci -repotoken="$COVERALLS_TOKEN"
- test -n "$TRAVIS_TAG" && go run ./cmd/goreleaser/main.go
notifications:
email: false