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:
32
32
with :
33
33
java-version : 8
34
34
- name : Report Coverage to Coveralls for Pull Requests
35
- if : ${{ github.event.name == 'pull_request' }}
35
+ if : github.event.name == 'pull_request'
36
36
run : ./mvnw test jacoco:report coveralls:report -q -Dlicense.skip=true -DrepoToken=$GITHUB_TOKEN -DserviceName=github -DpullRequest=$PR_NUMBER
37
37
env :
38
38
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
39
39
PR_NUMBER : ${{ github.event.number }}
40
40
- name : Report Coverage to Coveralls for General Push
41
- if : ${{ github.event.name == 'push' }}
41
+ if : github.event.name == 'push'
42
42
run : ./mvnw test jacoco:report coveralls:report -q -Dlicense.skip=true -DrepoToken=$GITHUB_TOKEN -DserviceName=github
43
43
env :
44
44
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments