Skip to content

Commit 8a9884e

Browse files
committed
ci: Add sqlite clippy to CI check
1 parent a76505a commit 8a9884e

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.circleci/config.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,19 @@ commands:
4848
- run:
4949
name: Rust Clippy MySQL
5050
command: |
51-
cargo clippy --workspace --all-targets --no-default-features --features=syncstorage-db/mysql --features=py_verifier -- -D warnings
51+
cargo clippy --workspace --all-targets --no-default-features --features=syncstorage-db/mysql --features=tokenserver-db/mysql --features=py_verifier -- -D warnings
52+
rust-clippy-sqlite:
53+
steps:
54+
- run:
55+
name: Rust Clippy SQLite
56+
command: |
57+
cargo clippy --workspace --all-targets --no-default-features --features=syncstorage-db/sqlite --features=tokenserver-db/sqlite --features=py_verifier -- -D warnings
5258
rust-clippy-spanner:
5359
steps:
5460
- run:
5561
name: Rust Clippy Spanner
5662
command: |
57-
cargo clippy --workspace --all-targets --no-default-features --features=syncstorage-db/spanner --features=py_verifier -- -D warnings
63+
cargo clippy --workspace --all-targets --no-default-features --features=syncstorage-db/spanner --features=tokenserver-db/mysql --features=py_verifier -- -D warnings
5864
cargo-build:
5965
steps:
6066
- run:

0 commit comments

Comments
 (0)