We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 790004f commit d076768Copy full SHA for d076768
.github/workflows/check-clippy.yml
@@ -44,9 +44,13 @@ jobs:
44
target/
45
key: ${{ github.job }}-${{ github.ref }}-${{ matrix.features }}-cargo-cache
46
47
- - name: Run Clippy with "${{ matrix.features }}"
48
- run: cargo clippy --all-targets --locked ${{ matrix.features }}
49
-
50
51
52
+ - name: Run Test
+ run: |
+ docker run --rm \
+ -v "${GITHUB_WORKSPACE}:/workspace" \
+ -v "${HOME}/.cargo:/root/.cargo" \
+ -w /workspace \
53
+ -e RUSTDOCFLAGS='-D warnings' \
54
+ -e SKIP_WASM_BUILD=1 \
55
+ paritytech/ci-unified:bullseye-1.74.0 \
56
+ bash -c "cargo clippy --locked --quiet ${{ matrix.features }}"
0 commit comments