We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f15d975 commit 972dae8Copy full SHA for 972dae8
1 file changed
.github/workflows/benchmark.yaml
@@ -51,11 +51,11 @@ jobs:
51
PR_total_time = pr$total_time,
52
Main_median = main$median,
53
Main_total_time = main$total_time,
54
- Slowdown_percent_median = slowdown_median
+ Slowdown_percent_median = as.numeric(slowdown_median)
55
)
56
57
cat("\n=== Benchmark Comparison ===\n")
58
- print(result_table, row.names = FALSE)
+ print(result_table, row.names = FALSE, width = Inf)
59
60
if (any(slowdown_median >= 20)) {
61
cat("\nERROR: PR branch is >=20% (median time) slower than main for at least one benchmark entry\n")
0 commit comments