Skip to content

Commit f28aaba

Browse files
authored
Merge pull request #53 from softwaremill/parse-tests-reports
Parse test reports in the GH Actions workflow
2 parents 9ae72fb + 0db36a1 commit f28aaba

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/ci.yml

+7
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,13 @@ jobs:
2323
run: sbt -v compile
2424
- name: Test
2525
run: sbt -v test
26+
- name: Test Report
27+
uses: dorny/test-reporter@v1
28+
if: success() || failure() # run regardless previous step succeeded or failed
29+
with:
30+
name: 'Tests results'
31+
path: '**/test-reports/TEST*.xml'
32+
reporter: java-junit
2633

2734
publish:
2835
name: Publish release

0 commit comments

Comments
 (0)