We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b9ce60 commit d022bb0Copy full SHA for d022bb0
1 file changed
.github/workflows/benchmark.yml
@@ -53,7 +53,10 @@ jobs:
53
# TODO(template) update the bench command if you use a different
54
# benchmark harness or need to pass extra flags
55
- name: Run benchmarks
56
- run: cargo bench -p template_crate --bench benchmark -- --output-format bencher 2>&1 | tee benchmark-output.txt
+ shell: bash
57
+ run: |
58
+ set -euo pipefail
59
+ cargo bench -p template_crate --bench benchmark -- --output-format bencher 2>&1 | tee benchmark-output.txt
60
61
# On PRs: restore the most-recent baseline written by a main-branch run.
62
# Using only restore-keys (no matching primary key) guarantees we always
0 commit comments