We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6ec0ca commit 025b0f7Copy full SHA for 025b0f7
.github/workflows/benchmark.yml
@@ -17,10 +17,10 @@ jobs:
17
uses: actions-rust-lang/setup-rust-toolchain@v1
18
19
- name: Build benchmark binary
20
- run: cargo build --release --bin benchmark
+ run: cd benchmark && cargo build --release --bin benchmark
21
22
- name: Run benchmark
23
- run: ./target/release/benchmark > benchmark_report.md
+ run: cd benchmark && ./target/release/benchmark > ../benchmark_report.md
24
25
- name: Display benchmark results
26
run: cat benchmark_report.md
0 commit comments