Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,10 @@ runs:
# Enable debugging if 'debug' is true
[ "${{ inputs.debug }}" == "true" ] && set -x
# Try to install coverage-reporter via Homebrew
if ! brew tap coverallsapp/coveralls --quiet || ! brew install coveralls --quiet; then
# Try to install coverage-reporter via Homebrew.
# The fully-qualified formula name auto-taps the repo and trusts only
# this formula, as required by tap trust in Homebrew 6.0.0+.
if ! brew install coverallsapp/coveralls/coveralls --quiet; then
echo "Failed to install coveralls via Homebrew (macOS)."
[ "${{ inputs.fail-on-error }}" == "false" ] && exit 0
exit 1
Expand Down
Loading