From eabb2482949ccd7e4021287f8562528f35500292 Mon Sep 17 00:00:00 2001 From: Alex Butler Date: Sun, 14 Sep 2025 12:42:41 +0100 Subject: [PATCH] CI: Add TEST_BENCHES --- lib/smol_str/.github/ci.rs | 5 +++++ 1 file changed, 5 insertions(+) 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 ¤t_branch == "master" { let _s = Section::new("PUBLISH");