Skip to content

Commit

Permalink
fix markdown table output
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanvc committed May 8, 2024
1 parent 15e3499 commit 3484164
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/benchmark-template.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

---
name: Reusable Benchmark Template
on:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/compare-benchmarks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ jobs:
- name: Compare benchmarks
run: |
make install-benchstat
benchstat -format csv -confidence=0.75 base.txt head.txt 2>/dev/null 1> result.csv
benchstat -format csv -confidence=0.75 base.txt head.txt 2>/dev/null 1> tmp.csv
echo "$(head -n1 tmp.csv),,," > output.csv # Add three missing cols from header
tail -n+2 tmp.csv >> output.csv
benchstat -confidence=0.75 base.txt head.txt
- name: Read CSV
id: read-csv
Expand Down

0 comments on commit 3484164

Please sign in to comment.