Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'lib/smol_str/.github/ci.rs')
-rw-r--r--lib/smol_str/.github/ci.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/smol_str/.github/ci.rs b/lib/smol_str/.github/ci.rs
index 21c8584fb9..c594e8973c 100644
--- a/lib/smol_str/.github/ci.rs
+++ b/lib/smol_str/.github/ci.rs
@@ -39,6 +39,11 @@ fn try_main() -> Result<()> {
shell("cargo test --no-default-features --workspace")?;
}
+ {
+ let _s = Section::new("TEST_BENCHES");
+ shell("cargo test --benches --all-features")?;
+ }
+
let current_branch = shell_output("git branch --show-current")?;
if &current_branch == "master" {
let _s = Section::new("PUBLISH");