File tree Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -13,18 +13,26 @@ jobs:
13
13
- name : Set up JDK 17
14
14
uses : actions/setup-java@v4
15
15
with :
16
- java-version : ' 17 '
17
- distribution : ' temurin'
16
+ java-version : " 17 "
17
+ distribution : " temurin"
18
18
cache : maven
19
19
- name : Build with Maven
20
20
run : mvn --batch-mode --update-snapshots package
21
21
22
+ - name : JUnit test report
23
+ uses : mikepenz/action-junit-report@v5
24
+ if : always()
25
+ with :
26
+ check_name : junit test report
27
+ report_paths : " **/target/surefire-reports/*.xml"
28
+
22
29
- name : Run pynfs tests in container
23
30
id : tester
24
31
run : COMPOSE_DOCKER_CLI_BUILD=1 DOCKER_BUILDKIT=1 docker compose -f full-test.yml up --build --quiet-pull --exit-code-from tester
25
32
26
- - name : Publish Test Report
33
+ - name : Pynfs Test Report
27
34
uses : mikepenz/action-junit-report@v5
28
35
if : always()
29
36
with :
30
- report_paths : ' report/*.xml'
37
+ check_name : pynfs protocol compatibility test
38
+ report_paths : " report/*.xml"
You can’t perform that action at this time.
0 commit comments