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 f304bcb commit 28708bcCopy full SHA for 28708bc
.github/workflows/rust.yml
@@ -88,3 +88,19 @@ jobs:
88
override: true
89
- name: Create Doc
90
run: cargo doc
91
+
92
+ Clippy:
93
+ name: Clippy
94
+ runs-on: ubuntu-latest
95
+ steps:
96
+ - uses: actions/checkout@v2
97
+ - uses: actions-rs/toolchain@v1
98
+ with:
99
+ profile: minimal
100
+ toolchain: stable
101
+ override: true
102
+ - run: rustup component add clippy
103
+ - uses: actions-rs/cargo@v1
104
105
+ command: clippy
106
+ args: --all-targets -- -D warnings
clippy.toml
@@ -0,0 +1 @@
1
+msrv = "1.41.1"
0 commit comments