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 7065275 commit 577c2a4Copy full SHA for 577c2a4
.github/workflows/rust.yml
@@ -40,15 +40,11 @@ jobs:
40
- name: Build benchmark
41
uses: actions-rs/cargo@v1
42
with:
43
- working-directory: rust
44
command: build
45
- args: --release --all-features
+ args: --release --all-features --manifest-path rust/Cargo.toml
46
- name: Run benchmark
47
- uses: actions-rs/cargo@v1
48
- with:
49
50
- command: bench
51
- args: --bench bench -- --output-format bencher | tee out.txt
+ working-directory: rust
+ run: cargo bench --bench bench -- --output-format bencher | tee out.txt
52
- name: Prepare benchmark results
53
run: |
54
cd rust
0 commit comments