We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d4338e commit f6168c8Copy full SHA for f6168c8
.github/workflows/clippy.yaml
@@ -0,0 +1,23 @@
1
+name: Clippy
2
+
3
+on:
4
+ pull_request:
5
+ branches: [ main ]
6
+ push:
7
8
9
10
+jobs:
11
+ lints:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v4
15
16
+ - name: Toolchain setup
17
+ uses: dtolnay/rust-toolchain@master
18
+ with:
19
+ toolchain: stable
20
+ components: rustfmt
21
22
+ - name: Clippy
23
+ run: cargo clippy -- --all-features -Dwarnings
0 commit comments