Skip to content

Commit d3b1e9f

Browse files
committed
Fix multi-line string
1 parent e0904b1 commit d3b1e9f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/bench.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
8080
- name: Run large benchmarks
8181
if: github.event.issue.pull_request && contains(github.event.comment.body, '!large')
82-
run:
82+
run: |
8383
echo "## Large payload run (1MB)" >> benchmark.md
8484
hyperfine --show-output --warmup 1 --export-markdown bench-mysql-l.md -n 'mysql-main' './bench-main -resultsize 1000000 -runs 2 -backend mysql -timeout 240s' -n 'mysql-pr' './bench-pr -resultsize 1000000 -runs 2 -backend mysql -timeout 240s'
8585
hyperfine --show-output --warmup 1 --export-markdown bench-sqlite-l.md -n 'sqlite-main' './bench-main -resultsize 1000000 -runs 2 -backend sqlite -timeout 240s' -n 'sqlite-pr' './bench-pr -resultsize 1000000 -runs 2 -backend sqlite -timeout 240s'
@@ -93,7 +93,7 @@ jobs:
9393
9494
- name: Run very large benchmarks
9595
if: github.event.issue.pull_request && contains(github.event.comment.body, '!verylarge')
96-
run:
96+
run: |
9797
echo "## Large payload run (5MB)" >> benchmark.md
9898
hyperfine --show-output --warmup 1 --export-markdown bench-mysql-l.md -n 'mysql-main' './bench-main -resultsize 5000000 -runs 2 -backend mysql -timeout 240s' -n 'mysql-pr' './bench-pr -resultsize 5000000 -runs 2 -backend mysql -timeout 240s'
9999
hyperfine --show-output --warmup 1 --export-markdown bench-sqlite-l.md -n 'sqlite-main' './bench-main -resultsize 5000000 -runs 2 -backend sqlite -timeout 240s' -n 'sqlite-pr' './bench-pr -resultsize 5000000 -runs 2 -backend sqlite -timeout 240s'

0 commit comments

Comments
 (0)