From 207b5db9fa13829b5376de326663756bccb152fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20B=C3=B8ving?= Date: Wed, 3 Jan 2024 08:52:20 +0100 Subject: [PATCH] Remove `all` from individual feature checks in CI --- .github/workflows/rust.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index f79738a469..845ac87a2e 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -34,11 +34,11 @@ jobs: run: cargo check --all-targets --manifest-path "scylla/Cargo.toml" --features "" - name: Cargo check with all serialization features run: cargo check --all-targets --manifest-path "scylla/Cargo.toml" --features "full-serialization" - - name: Cargo check with all secret feature + - name: Cargo check with secret feature run: cargo check --all-targets --manifest-path "scylla/Cargo.toml" --features "secret" - - name: Cargo check with all chrono feature + - name: Cargo check with chrono feature run: cargo check --all-targets --manifest-path "scylla/Cargo.toml" --features "chrono" - - name: Cargo check with all time feature + - name: Cargo check with time feature run: cargo check --all-targets --manifest-path "scylla/Cargo.toml" --features "time" - name: Build scylla-cql run: cargo build --verbose --all-targets --manifest-path "scylla-cql/Cargo.toml" --features "full-serialization"