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 31
31
32
32
permissions :
33
33
contents : write # for Dependency submission
34
+ checks : write # for action-junit-report
35
+ pull-requests : write # for action-junit-report
34
36
35
37
jobs :
36
38
lint-and-test-dev :
37
39
name : lint-and-test-dev
38
40
runs-on : ubuntu-latest
39
41
timeout-minutes : 15
40
- permissions : # for gradle-dependency-submission
41
- contents : write
42
42
steps :
43
43
- name : Checkout
44
44
uses : actions/checkout@v4
56
56
run : ./gradlew lintKotlin
57
57
- name : Test
58
58
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 29
29
- " **.java"
30
30
- .github/workflows/test-main.yml
31
31
workflow_dispatch :
32
+
33
+ permissions :
34
+ checks : write # for action-junit-report
35
+ pull-requests : write # for action-junit-report
36
+
32
37
jobs :
33
38
test-main :
34
39
strategy :
72
77
uses : gradle/actions/setup-gradle@v4
73
78
- name : Test
74
79
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