ci: Test the experimental-algorithms feature of the crypto crate

This commit is contained in:
Damir Jelić
2022-08-15 16:28:17 +02:00
parent 5768188da8
commit fe35e7c9fa

View File

@@ -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(())