diff --git a/xtask/src/ci.rs b/xtask/src/ci.rs index 1bed64273..46d6898b9 100644 --- a/xtask/src/ci.rs +++ b/xtask/src/ci.rs @@ -196,6 +196,18 @@ fn run_crypto_tests() -> Result<()> { .run()?; cmd!("rustup run stable cargo nextest run -p matrix-sdk-crypto --features=backups_v1").run()?; cmd!("rustup run stable cargo test --doc -p matrix-sdk-crypto --features=backups_v1").run()?; + cmd!( + "rustup run stable cargo clippy -p matrix-sdk-crypto --features=experimental-algorithms -- -D warnings" + ) + .run()?; + cmd!( + "rustup run stable cargo nextest run -p matrix-sdk-crypto --features=experimental-algorithms" + ).run()?; + cmd!( + "rustup run stable cargo test --doc -p matrix-sdk-crypto --features=experimental-algorithms" + ) + .run()?; + cmd!("rustup run stable cargo nextest run -p matrix-sdk-crypto-ffi").run()?; Ok(())