File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -34,17 +34,18 @@ jobs:
34
34
restore-keys : ${{ runner.os }}-m2
35
35
- name : Run tests with Maven
36
36
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
39
+ with :
40
+ name : ciMavenReport-${{ github.run_id } }
41
+ path : target/surefire-reports
37
42
- name : Test Report
38
43
uses : dorny/test-reporter@v1
39
44
if : success() || failure() # run this step even if previous step failed
40
45
with :
41
46
name : Test Results # Name of the check run which will be created
47
+ artifact : ciMavenReport-${{ github.run_id }} # Artifact name to download
42
48
path : ${{ github.workspace }}/target/surefire-reports # Path to test results
43
49
reporter : java-junit # Format of test results
44
50
# java-version: ${{ matrix.java-version }} # Java version
45
51
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