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 3014f0a commit 2ee86b5Copy full SHA for 2ee86b5
.github/workflows/ci.yml
@@ -69,3 +69,22 @@ jobs:
69
with:
70
command: fmt
71
args: --all -- --check
72
+
73
+ clippy:
74
+ name: Clippy Lints
75
+ runs-on: ubuntu-18.04
76
+ steps:
77
+ - name: Checkout Repository
78
+ uses: actions/checkout@master
79
80
+ - name: Setup Rust Toolchain
81
+ uses: actions-rs/toolchain@v1
82
+ with:
83
+ toolchain: stable
84
+ override: true
85
+ components: clippy
86
+ - name: Run clippy tool
87
+ uses: actions-rs/cargo@v1
88
89
+ command: clippy
90
+ args: --all
0 commit comments