Skip to content

Commit

Permalink
feat: map check names to their workflow files to allow for searching
Browse files Browse the repository at this point in the history
  • Loading branch information
gilesw committed Oct 7, 2024
1 parent ccf1730 commit 39aad67
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven_test_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ jobs:
uses: dorny/test-reporter@e9fa2f582c0ebbe2e263fd18fad744d52e0b0203
if: always()
with:
name: "${{ inputs.project }}: Unit tests results"
name: "maven_test_publish_${{ inputs.project }}"
path: ${{ inputs.project }}/target/surefire-reports/*.xml
reporter: java-junit
fail-on-error: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/maven_test_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- uses: dorny/test-reporter@e9fa2f582c0ebbe2e263fd18fad744d52e0b0203
with:
artifact: ${{ inputs.project }}
name: "${{ inputs.project }} Unit Tests" # Name of the check run which will be created
name: "maven_test_report_${{ inputs.project }}" # Name of the check run which will be created
path: '*.xml' # Path to test results (inside artifact .zip)
reporter: java-junit # Format of test results

0 comments on commit 39aad67

Please sign in to comment.