Skip to content

Commit f6c9a8b

Browse files
committed
lkl/ci: show test results
Show tests results directly in Github. Signed-off-by: Octavian Purdila <tavip@google.com>
1 parent 7d7157f commit f6c9a8b

1 file changed

Lines changed: 11 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ on:
99
jobs:
1010
tests:
1111
runs-on: ${{ matrix.runs_on }}
12+
permissions:
13+
pull-requests: write
14+
checks: write
15+
contents: read
1216
strategy:
1317
fail-fast: false
1418
matrix:
@@ -155,6 +159,13 @@ jobs:
155159
with:
156160
name: test-results-${{ matrix.displayTargetName }}
157161
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
158169

159170
checkpatch:
160171
runs-on: ubuntu-24.04

0 commit comments

Comments
 (0)