We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d7157f commit f6c9a8bCopy full SHA for f6c9a8b
1 file changed
.github/workflows/ci.yml
@@ -9,6 +9,10 @@ on:
9
jobs:
10
tests:
11
runs-on: ${{ matrix.runs_on }}
12
+ permissions:
13
+ pull-requests: write
14
+ checks: write
15
+ contents: read
16
strategy:
17
fail-fast: false
18
matrix:
@@ -155,6 +159,13 @@ jobs:
155
159
with:
156
160
name: test-results-${{ matrix.displayTargetName }}
157
161
path: junit/*.xml
162
+ - name: Publish test results
163
+ uses: mikepenz/action-junit-report@v4
164
+ if: always()
165
+ with:
166
+ report_paths: junit/*.xml
167
+ detailed_summary: true
168
+ include_passed: true
158
169
170
checkpatch:
171
runs-on: ubuntu-24.04
0 commit comments