Skip to content

Commit

Permalink
bold
Browse files Browse the repository at this point in the history
  • Loading branch information
swhitty committed Oct 18, 2024
1 parent 724d09d commit 2557cf4
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/actions/test-summary/make-summary.swift
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,12 @@ let failed = failures.count
let passed = total - failed
let skipped = 0

let table = """
print("""
<table>
<tr style=\"weight: bold;\"><td></td><td>Tests</td><td>Passed ✅</td><td>Skipped ⏭️</td><td>Failed ❌</td></tr>
<tr><td></td><td>Tests</td><td>**Passed** ✅</td><td>Skipped ⏭️</td><td>Failed ❌</td></tr>
<tr><td>\(junit.lastPathComponent)</td><td>\(total) ran</td><td>\(passed) passed</td><td>\(skipped) skipped</td><td>\(failed) failed</td></tr>
</table>
"""
print(table)
""")

for node in failures {

Expand Down

0 comments on commit 2557cf4

Please sign in to comment.