mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-01-06 03:13:48 +02:00
14 lines
329 B
YAML
14 lines
329 B
YAML
language: go
|
|
go: 1.8
|
|
install:
|
|
- make setup
|
|
- gem install fpm
|
|
script:
|
|
- make test
|
|
- test -n "$TRAVIS_TAG" || go run ./cmd/goreleaser/main.go --skip-validate --skip-publish
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|
|
- test -n "$TRAVIS_TAG" && go run ./cmd/goreleaser/main.go
|
|
notifications:
|
|
email: false
|