File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -32,13 +32,13 @@ jobs:
3232 with :
3333 java-version : 8
3434 - name : Report Coverage to Coveralls for Pull Requests
35- if : ${{ github.event.name == 'pull_request' }}
35+ if : github.event.name == 'pull_request'
3636 run : ./mvnw test jacoco:report coveralls:report -q -Dlicense.skip=true -DrepoToken=$GITHUB_TOKEN -DserviceName=github -DpullRequest=$PR_NUMBER
3737 env :
3838 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
3939 PR_NUMBER : ${{ github.event.number }}
4040 - name : Report Coverage to Coveralls for General Push
41- if : ${{ github.event.name == 'push' }}
41+ if : github.event.name == 'push'
4242 run : ./mvnw test jacoco:report coveralls:report -q -Dlicense.skip=true -DrepoToken=$GITHUB_TOKEN -DserviceName=github
4343 env :
4444 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments