From 5fc8ccca144bd5d8208c15a5dda052434ef97406 Mon Sep 17 00:00:00 2001 From: Jeff Hodges Date: Sat, 15 Jul 2017 21:22:37 -0700 Subject: [PATCH] allow successful TravisCI runs in forks Most forks won't be in goveralls and so this command in travis.yml was, previously, failing and causing the build to fail. Now, it doesn't! --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 0bfd17597..8453ca728 100644 --- a/.travis.yml +++ b/.travis.yml @@ -86,4 +86,5 @@ script: - go test -v -covermode=count -coverprofile=coverage.out - go vet ./... - test -z "$(gofmt -d -s . | tee /dev/stderr)" +after_script: - $HOME/gopath/bin/goveralls -coverprofile=coverage.out -service=travis-ci