Skip to content

Commit 28ec099

Browse files
committed
Add additional output to benchmark job summary generation
1 parent 81d5716 commit 28ec099

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/platform-benchmark.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,14 @@ jobs:
7878
do
7979
file_name=$(basename "$report")
8080
platform="${file_name%.*}"
81+
echo "File $file_name"
82+
echo "::group::Report CSV"
83+
cat "$report"
84+
echo "::endgroup::"
85+
markdown_table=$(csv2md "$report")
86+
echo "::group::Report Markdown"
87+
echo "$markdown_table"
88+
echo "::endgroup::"
8189
echo "# Platform ${platform}" >> $GITHUB_STEP_SUMMARY
82-
csv2md "$report" >> $GITHUB_STEP_SUMMARY
90+
echo "$markdown_table" >> $GITHUB_STEP_SUMMARY
8391
done

0 commit comments

Comments
 (0)