File tree Expand file tree Collapse file tree 1 file changed +15
-5
lines changed
Expand file tree Collapse file tree 1 file changed +15
-5
lines changed Original file line number Diff line number Diff line change @@ -2,23 +2,33 @@ name: Gradle build
22
33on :
44 push :
5- branches : [ dev, master ]
5+ branches : [ dev, main ]
66 pull_request :
77
88jobs :
99 build :
1010 runs-on : windows-latest
1111 timeout-minutes : 20
1212 steps :
13- - uses : actions/checkout@v3
14- - uses : actions/setup-java@v3.5.1
13+ - uses : actions/checkout@v6
14+ - uses : actions/setup-java@v5
1515 with :
1616 java-version : ' 21'
1717 distribution : ' liberica'
1818 cache : ' gradle'
1919 - name : Gradle Wrapper Validation
2020 uses : gradle/wrapper-validation-action@v1.0.4
2121 - name : Gradle Build
22- uses : gradle/gradle-build-action@v2.4.2
22+ uses : gradle/gradle-build-action@v3
2323 with :
24- arguments : test jvmTest
24+ arguments : test jvmTest
25+ - name : Publish Test Report
26+ uses : mikepenz/action-junit-report@v6
27+ if : ${{ !cancelled() }} # always run even if the previous step fails
28+ with :
29+ report_paths : ' **/test-results/**/TEST-*.xml'
30+ annotate_only : true
31+ detailed_summary : true
32+ flaky_summary : true
33+ include_empty_in_summary : false
34+ skip_success_summary : true
You can’t perform that action at this time.
0 commit comments