CI: Add TEST_BENCHES

This commit is contained in:
Alex Butler 2025-09-14 12:42:41 +01:00 committed by Lukas Wirth
parent b4220df673
commit 81c8790a17

5
.github/ci.rs vendored
View File

@ -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");