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 a7d8979 commit b4aee1aCopy full SHA for b4aee1a
.github/workflows/rust-clippy.yml
@@ -0,0 +1,33 @@
1
+name: rust-clippy
2
+
3
+on:
4
+ push:
5
6
+jobs:
7
+ clippy:
8
+ name: Run rust-clippy
9
+ runs-on: ubuntu-latest
10
+ permissions:
11
+ contents: read
12
+ security-events: write
13
+ steps:
14
+ - name: Checkout code
15
+ uses: actions/checkout@v4
16
17
+ - name: Install Rust toolchain
18
+ uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af #@v1
19
+ with:
20
+ profile: minimal
21
+ toolchain: stable
22
+ components: clippy
23
+ override: true
24
25
+ - name: Install required cargo
26
+ run: rustup component add clippy
27
28
+ - name: Run rust-clippy
29
+ run:
30
+ cargo clippy
31
+ --all-features
32
+ --message-format=json
33
+ continue-on-error: true
0 commit comments