File tree Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change 3131
3232permissions :
3333 contents : write # for Dependency submission
34+ checks : write # for action-junit-report
35+ pull-requests : write # for action-junit-report
3436
3537jobs :
3638 lint-and-test-dev :
3739 name : lint-and-test-dev
3840 runs-on : ubuntu-latest
3941 timeout-minutes : 15
40- permissions : # for gradle-dependency-submission
41- contents : write
4242 steps :
4343 - name : Checkout
4444 uses : actions/checkout@v4
5656 run : ./gradlew lintKotlin
5757 - name : Test
5858 run : ./gradlew test
59+ - name : Publish Test Report
60+ uses : mikepenz/action-junit-report@v5
61+ if : always()
62+ with :
63+ report_paths : ' **/build/test-results/test/TEST-*.xml'
Original file line number Diff line number Diff line change 2929 - " **.java"
3030 - .github/workflows/test-main.yml
3131 workflow_dispatch :
32+
33+ permissions :
34+ checks : write # for action-junit-report
35+ pull-requests : write # for action-junit-report
36+
3237jobs :
3338 test-main :
3439 strategy :
7277 uses : gradle/actions/setup-gradle@v4
7378 - name : Test
7479 run : ./gradlew test
80+ - name : Publish Test Report
81+ uses : mikepenz/action-junit-report@v5
82+ if : always()
83+ with :
84+ report_paths : ' **/build/test-results/test/TEST-*.xml'
You can’t perform that action at this time.
0 commit comments