File tree Expand file tree Collapse file tree 1 file changed +14
-5
lines changed
Expand file tree Collapse file tree 1 file changed +14
-5
lines changed Original file line number Diff line number Diff line change 1111 name : Run Tests suite
1212 runs-on : ubuntu-latest
1313 strategy :
14- fail-fast : true
14+ # fail-fast: true
1515 matrix :
1616 java-version : [22]
1717
3434 restore-keys : ${{ runner.os }}-m2
3535 - name : Run tests with Maven
3636 run : mvn -B test --file pom.xml
37- - name : Création de l'artefact des résultats des tests
38- uses : actions/upload-artifact@v4
37+ - name : Test Report
38+ uses : dorny/test-reporter@v1
39+ if : success() || failure() # run this step even if previous step failed
3940 with :
40- name : ciMavenReport-${{ github.run_id }}
41- path : target/surefire-reports
41+ name : Test Results # Name of the check run which will be created
42+ path : ${{ github.workspace }}/target/surefire-reports/TEST-TestSuite.xml # Path to test results
43+ reporter : java-junit # Format of test results
44+ # java-version: ${{ matrix.java-version }} # Java version
45+
46+ # - name: Création de l'artefact des résultats des tests
47+ # uses: actions/upload-artifact@v4
48+ # with:
49+ # name: ciMavenReport-${{ github.run_id }}
50+ # path: target/surefire-reports
You can’t perform that action at this time.
0 commit comments