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 8b891cd commit 438eb00Copy full SHA for 438eb00
.github/workflows/cargo.yml
@@ -1,6 +1,6 @@
1
on: [push]
2
3
-name: CI Cargo
+name: CI
4
5
jobs:
6
build_and_test:
@@ -15,3 +15,17 @@ jobs:
15
with:
16
command: build
17
args: --release --all-features
18
+ clippy_check:
19
+ name: Clippy Check
20
+ runs-on: ubuntu-latest
21
+ steps:
22
+ - uses: actions/checkout@v2
23
+ - uses: actions-rs/toolchain@v1
24
+ with:
25
+ toolchain: nightly
26
+ components: clippy
27
+ override: true
28
+ - uses: actions-rs/clippy-check@v1
29
30
+ token: ${{ secrets.GITHUB_TOKEN }}
31
+ args: --all-features
0 commit comments