There was an error while loading. Please reload this page.
1 parent b7cd9c9 commit 333b537Copy full SHA for 333b537
1 file changed
.github/workflows/ci.yml
@@ -22,7 +22,7 @@ jobs:
22
- name: Install Rust
23
uses: dtolnay/rust-toolchain@stable
24
with:
25
- components: rustfmt
+ components: rustfmt, clippy
26
27
- name: Cache cargo
28
uses: actions/cache@v4
@@ -36,6 +36,9 @@ jobs:
36
- name: Check formatting
37
run: cargo fmt --all -- --check
38
39
+ - name: Run clippy
40
+ run: cargo clippy --workspace --all-targets --all-features -- -D warnings
41
+
42
- name: Build
43
run: cargo build --verbose
44
0 commit comments