We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
clippy
1 parent 91137c7 commit 3b37c64Copy full SHA for 3b37c64
.github/workflows/ci.yml
@@ -34,11 +34,14 @@ jobs:
34
with:
35
toolchain: ${{ matrix.toolchain }}
36
target: ${{ matrix.target }}
37
- components: rustfmt
+ components: rustfmt, clippy
38
39
- run: cargo fmt --check
40
+ - run: cargo clippy --target=${{ matrix.target }} -- -Dwarnings
41
- run: cargo build --target=${{ matrix.target }}
42
- run: cargo doc --target=${{ matrix.target }}
43
+ env:
44
+ RUSTDOCFLAGS: -Dwarnings
45
# Temporary test non-target only.
46
# TODO: Test in emulator or something.
47
- run: cargo test
0 commit comments