Skip to content

Commit

Permalink
chore: Compile and run in separate steps
Browse files Browse the repository at this point in the history
  • Loading branch information
scsmithr committed Nov 30, 2024
1 parent c8dd39f commit 4f8dde1
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/bench.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,14 @@ jobs:
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Compile and run
- name: Compile standard
run: |
cargo run \
cargo build \
--release \
--bin bench_standard \
-- \
--bin bench_standard
- name: Run standard
run: |
./target/release/bench_standard \
--print-results \
--print-explain

0 comments on commit 4f8dde1

Please sign in to comment.