We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa75098 commit 045e26aCopy full SHA for 045e26a
R/gha-summary.R
@@ -11,6 +11,7 @@ create_gha_summary <- function(results) {
11
p <- function(...) cat(..., file = out, append = TRUE)
12
13
# header
14
+ p("<details>\n")
15
p("# Test results\n\n")
16
p("| FAIL | WARN | SKIP | PASS | Context | Test | Time |\n")
17
p("|-----:|-----:|-----:|-----:|:--------|:-----|:-----|\n")
@@ -31,6 +32,8 @@ create_gha_summary <- function(results) {
31
32
"|\n"
33
))
34
35
+ p("</details>\n")
36
+
37
invisible(results)
38
}
39
0 commit comments