Skip to content

Commit 86aa970

Browse files
authored
Pretty layout for tests results. (#3348)
Adds `Tests results` section in `Checks` which layouts test results in eye-friendly manner. ![image](https://github.com/softwaremill/tapir/assets/22705075/847bc695-69d5-4e6b-b62a-7c57ab31a851) Based on: softwaremill/ox#53
1 parent 06d662b commit 86aa970

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
@@ -95,6 +95,13 @@ jobs:
9595
- name: Test
9696
if: matrix.target-platform == 'JS' && matrix.scala-version == '3'
9797
run: sbt $SBT_JAVA_OPTS catsJS3/test circeJsonJS3/test clientCoreJS3/test clientTestsJS3/test coreJS3/test jsoniterScalaJS3/test openapiDocsJS3/test redocJS3/test serverCoreJS3/test sttpClientJS3/test testingJS3/test testsJS3/test uPickleJsonJS3/test zioJsonJS3/test
98+
- name: Test Report
99+
uses: dorny/test-reporter@v1
100+
if: success() || failure() # run regardless previous step succeeded or failed
101+
with:
102+
name: 'Tests results (${{ matrix.scala-version }}, ${{ matrix.target-platform }}, ${{ matrix.java }})'
103+
path: '**/test-reports/TEST*.xml'
104+
reporter: java-junit
98105
- name: Prepare release notes
99106
uses: release-drafter/release-drafter@v5
100107
with:

0 commit comments

Comments
 (0)