We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74cd3d5 commit dd7395fCopy full SHA for dd7395f
.github/workflows/rust.yml
@@ -42,16 +42,15 @@ jobs:
42
- uses: dtolnay/rust-toolchain@nightly
43
- run: cargo test --all-features
44
45
-# TODO: clippy isn't happy
46
-# clippy:
47
-# name: Check that clippy is happy
48
-# runs-on: ubuntu-latest
49
-# steps:
50
-# - uses: actions/checkout@v3
51
-# - uses: dtolnay/rust-toolchain@nightly
52
-# with:
53
-# components: clippy
54
-# - run: cargo clippy --all-features
+ clippy:
+ name: Check that clippy is happy
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+ - uses: dtolnay/rust-toolchain@stable
+ with:
+ components: clippy
+ - run: cargo clippy --all-features --all-targets
55
56
rustfmt:
57
name: Check formatting
0 commit comments