ci: Ensure ruma-client builds without any features active

This commit is contained in:
Jonas Platte 2021-12-21 09:36:30 +01:00
parent 71e27b7880
commit abfb9075da
No known key found for this signature in database
GPG Key ID: 7D261D771D915378

View File

@ -67,7 +67,7 @@ impl CiTask {
fn build_stable(&self) -> Result<()> {
// 1. Make sure everything compiles
cmd!("rustup run stable cargo check --workspace --all-features").run()?;
cmd!("rustup run stable cargo check -p ruma-client --no-default-features --features client-api").run()?;
cmd!("rustup run stable cargo check -p ruma-client --no-default-features").run()?;
cmd!("rustup run stable cargo check -p ruma-identifiers --no-default-features").run()?;
// 2. Run tests