1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-08 03:31:59 +02:00
goreleaser/.travis.yml
Jorin Vogel 195976b032
make goreleaser installable via go get #205
move main.go file to top level
and move go library to goreleaserlib package
2017-04-23 14:22:41 +02:00

14 lines
295 B
YAML

language: go
go: 1.8
install:
- make setup
- gem install fpm
script:
- make test
- test -n "$TRAVIS_TAG" || go run main.go --skip-validate --skip-publish
after_success:
- bash <(curl -s https://codecov.io/bash)
- test -n "$TRAVIS_TAG" && go run main.go
notifications:
email: false