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 1340772 commit 23135f2Copy full SHA for 23135f2
.github/workflows/ci.yml
@@ -7,6 +7,9 @@ on:
7
branches:
8
- master
9
10
+env:
11
+ clippy_rust_version: '1.82'
12
+
13
jobs:
14
check:
15
runs-on: ubuntu-latest
@@ -50,3 +53,13 @@ jobs:
50
53
- uses: Swatinem/rust-cache@v2
51
54
- name: check with all-features
52
55
run: cargo hack --rust-version --no-private --no-dev-deps check --all-features
56
57
+ clippy:
58
+ runs-on: ubuntu-latest
59
+ steps:
60
+ - uses: actions/checkout@v2
61
+ - uses: dtolnay/rust-toolchain@stable
62
+ with:
63
+ toolchain: ${{ env.clippy_rust_version }}
64
+ components: clippy
65
+ - run: cargo clippy --all-features --tests -- -D warnings
0 commit comments