1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-02-13 13:48:40 +02:00

avoid go run multiple times in the same build

This commit is contained in:
Carlos Alexandro Becker 2017-04-21 16:20:12 -03:00
parent a5f184d6d5
commit 90e2209a65
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940

View File

@ -5,7 +5,7 @@ install:
- gem install fpm
script:
- make test
- go run ./cmd/goreleaser/main.go --skip-validate --skip-publish
- 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"