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 305c894 commit 9e1cbdeCopy full SHA for 9e1cbde
.github/workflows/CI.yml
@@ -13,7 +13,6 @@ jobs:
13
- uses: actions-rs/toolchain@v1
14
with:
15
toolchain: ${{ matrix.rust }}
16
- components: clippy
17
profile: minimal
18
- uses: actions/checkout@master
19
- name: Check
@@ -186,13 +185,16 @@ jobs:
186
185
187
warnings:
188
# Check for any warnings. This is informational and thus is allowed to fail.
189
- needs: check
190
runs-on: ubuntu-latest
191
steps:
192
193
194
toolchain: stable
+ components: clippy
195
196
197
- - name: warnings
198
- run: RUSTFLAGS="-Dwarnings" cargo check --all
+ - name: Clippy
+ uses: actions-rs/clippy-check@v1
+ with:
199
+ token: ${{ secrets.GITHUB_TOKEN }}
200
+ args: --all --bins --examples --tests --benches -- -D warnings
0 commit comments