Skip to content

Commit

Permalink
Don't run benchmarks in debug profile
Browse files Browse the repository at this point in the history
  • Loading branch information
m1kc committed Apr 14, 2024
1 parent 30df8f6 commit fd840be
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ jobs:
- name: Build
run: cargo build --release && ls -lh target/*
- name: Build tests
run: cargo build --tests --benches
run: cargo build --tests
- name: Run tests
run: cargo test --all-targets
run: script/test
3 changes: 2 additions & 1 deletion script/test
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
set -e
set -x

cargo test --all-targets
cargo test
cargo bench --bench speed

0 comments on commit fd840be

Please sign in to comment.