We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9a2ffc commit 3aa8b51Copy full SHA for 3aa8b51
1 file changed
.github/workflows/ci.yml
@@ -23,7 +23,7 @@ jobs:
23
- name: Install Rust toolchain
24
uses: dtolnay/rust-toolchain@stable
25
with:
26
- components: rustfmt
+ components: rustfmt, clippy
27
28
- name: Cache cargo artifacts
29
uses: Swatinem/rust-cache@v2
@@ -34,6 +34,9 @@ jobs:
34
- name: Run tests
35
run: cargo test --locked
36
37
+ - name: Run clippy
38
+ run: cargo clippy --locked --all-targets --all-features -- -D warnings
39
+
40
- name: Check examples
41
run: cargo check --locked --examples
42
0 commit comments