Skip to content

Commit

Permalink
Pretty layout for tests results. (#3348)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
micsza authored Nov 28, 2023
1 parent 06d662b commit 86aa970
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,13 @@ jobs:
- name: Test
if: matrix.target-platform == 'JS' && matrix.scala-version == '3'
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
- name: Test Report
uses: dorny/test-reporter@v1
if: success() || failure() # run regardless previous step succeeded or failed
with:
name: 'Tests results (${{ matrix.scala-version }}, ${{ matrix.target-platform }}, ${{ matrix.java }})'
path: '**/test-reports/TEST*.xml'
reporter: java-junit
- name: Prepare release notes
uses: release-drafter/release-drafter@v5
with:
Expand Down

0 comments on commit 86aa970

Please sign in to comment.