Skip to content

Commit

Permalink
Merge pull request #2687 from hazendaz/master
Browse files Browse the repository at this point in the history
[gha] Run coveralls without the -q option
  • Loading branch information
hazendaz authored Jan 2, 2025
2 parents ace0bb0 + 0d34cf1 commit 7d1805f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/coveralls.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ jobs:
java-version: 21
- name: Report Coverage to Coveralls for Pull Requests
if: github.event_name == 'pull_request'
run: ./mvnw -B -V test jacoco:report coveralls:report -q -D"license.skip=true" -DrepoToken=$GITHUB_TOKEN -DserviceName=github -DpullRequest=$PR_NUMBER --no-transfer-progress -Pcoveralls
run: ./mvnw -B -V test jacoco:report coveralls:report -D"license.skip=true" -DrepoToken=$GITHUB_TOKEN -DserviceName=github -DpullRequest=$PR_NUMBER --no-transfer-progress -Pcoveralls
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR_NUMBER: ${{ github.event.number }}
- name: Report Coverage to Coveralls for General Push
if: github.event_name == 'push'
run: ./mvnw -B -V test jacoco:report coveralls:report -X -D"license.skip=true" -DrepoToken=$GITHUB_TOKEN -DserviceName=github --no-transfer-progress -Pcoveralls
run: ./mvnw -B -V test jacoco:report coveralls:report -D"license.skip=true" -DrepoToken=$GITHUB_TOKEN -DserviceName=github --no-transfer-progress -Pcoveralls
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 7d1805f

Please sign in to comment.