Skip to content

Commit c23cad4

Browse files
committed
Add CI steps for cargo check with each serialization feature individually enabled
1 parent 5714db1 commit c23cad4

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/rust.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,12 @@ jobs:
3434
run: cargo check --all-targets --manifest-path "scylla/Cargo.toml" --features ""
3535
- name: Cargo check with all serialization features
3636
run: cargo check --all-targets --manifest-path "scylla/Cargo.toml" --features "full-serialization"
37+
- name: Cargo check with secret feature
38+
run: cargo check --all-targets --manifest-path "scylla/Cargo.toml" --features "secret"
39+
- name: Cargo check with chrono feature
40+
run: cargo check --all-targets --manifest-path "scylla/Cargo.toml" --features "chrono"
41+
- name: Cargo check with time feature
42+
run: cargo check --all-targets --manifest-path "scylla/Cargo.toml" --features "time"
3743
- name: Build scylla-cql
3844
run: cargo build --verbose --all-targets --manifest-path "scylla-cql/Cargo.toml" --features "full-serialization"
3945
- name: Build

0 commit comments

Comments
 (0)