We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7cfd29e commit 784faa1Copy full SHA for 784faa1
.github/workflows/unity-meta-check-push.yml
@@ -19,10 +19,18 @@ jobs:
19
target_path: ./Directory
20
log_level: DEBUG
21
ignored_file_path: .meta-check-ignore
22
+ enable_junit: true
23
+ junit_xml_path: junit.xml
24
enable_pr_comment: true
25
pr_comment_lang: ja
26
pr_comment_send_success: true
27
pr_comment_pull_number: ${{ steps.findPr.outputs.number }}
28
env:
29
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
30
if: always()
31
+
32
+ - uses: mikepenz/action-junit-report@v3
33
+ with:
34
+ report_paths: junit.xml
35
+ detailed_summary: true
36
+ if: always()
0 commit comments