Skip to content

Commit

Permalink
Add CI steps for cargo check with each serialization feature indivi…
Browse files Browse the repository at this point in the history
…dually enabled
  • Loading branch information
oeb25 committed Dec 31, 2023
1 parent 5714db1 commit de35eca
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/rust.yml
Expand Up @@ -34,6 +34,12 @@ 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
run: cargo check --all-targets --manifest-path "scylla/Cargo.toml" --features "secret"
- name: Cargo check with all chrono feature
run: cargo check --all-targets --manifest-path "scylla/Cargo.toml" --features "chrono"
- name: Cargo check with all 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"
- name: Build
Expand Down

0 comments on commit de35eca

Please sign in to comment.