mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-08 03:31:59 +02:00
195976b032
move main.go file to top level and move go library to goreleaserlib package
14 lines
295 B
YAML
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
|