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.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/smol_str/.github/ci.rs b/lib/smol_str/.github/ci.rs index b293ebbcb7..98017ad97f 100644 --- a/lib/smol_str/.github/ci.rs +++ b/lib/smol_str/.github/ci.rs @@ -24,6 +24,11 @@ fn try_main() -> Result<()> { ); { + let _s = Section::new("BUILD_NO_DEFAULT_FEATURES"); + shell("cargo test --all-features --workspace --no-run --no-default-features")?; + } + + { let _s = Section::new("BUILD"); shell("cargo test --all-features --workspace --no-run")?; } |