Skip to content

Commit dd49391

Browse files
committed
chore: add check fmt and clippy
1 parent fe6835a commit dd49391

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/rust.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ jobs:
1616

1717
steps:
1818
- uses: actions/checkout@v3
19+
- name: Format
20+
run: cargo fmt --all -- --check
21+
- name: Clippy
22+
run: cargo clippy --workspace --all-targets --all-features -- -D warnings
1923
- name: Build
2024
run: cargo build --verbose
2125
- name: Run tests

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ fast-float = "0.2.0"
3131
nom = "7.1.3"
3232
ordered-float = { version = "3.6.0", default-features = false }
3333
rand = { version = "0.8.5", features = ["small_rng"] }
34-
serde = { version = "1.0.152", features = ["derive", "rc"] }
3534
serde_json = { version = "1.0.95", default-features = false, features = [
3635
"preserve_order",
3736
] }

0 commit comments

Comments
 (0)