From 81c8790a175365d72040959f689abab5b4e93ca4 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 --- .github/ci.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/ci.rs b/.github/ci.rs index 21c8584fb9..c594e8973c 100644 --- a/.github/ci.rs +++ b/.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");