Skip to content

Commit 86479d8

Browse files
committed
GHA summary: try to keep Unicode in output
1 parent 5c13a99 commit 86479d8

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

R/gha-summary.R

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ create_gha_summary <- function(results) {
88
return()
99
}
1010

11+
out <- file(out, open = "wba", encoding = "UTF-8")
12+
on.exit(close(out), add = TRUE)
13+
1114
p <- function(...) cat(..., file = out, append = TRUE)
1215
fmt_time <- function(x) sprintf("%.3fs", x)
1316

0 commit comments

Comments
 (0)