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 91dee18 commit 9454939Copy full SHA for 9454939
1 file changed
.github/workflows/reuse_static_code_analysis.yml
@@ -27,6 +27,7 @@ jobs:
27
with:
28
toolchain: stable
29
components: clippy
30
+ targets: 'x86_64-unknown-linux-musl'
31
32
- name: Setup sccache
33
uses: mozilla-actions/sccache-action@bafd42bd91680affe190f697cac6ef3ad958ecba # version: v0.0.9
@@ -69,6 +70,12 @@ jobs:
69
70
--exclude iceoryx2-ffi-c \
71
--exclude iceoryx2-cli
72
73
+ - name: Run cargo clippy with default features for target x86_64-unknown-linux-musl in debug mode
74
+ if: ${{ runner.os == 'Linux' }}
75
+ run: |
76
+ just verify sdk clippy --target x86_64-unknown-linux-musl
77
+ just verify integrations-zenoh clippy --target x86_64-unknown-linux-musl
78
+
79
- name: Setup miri
80
uses: dtolnay/rust-toolchain@e97e2d8cc328f1b50210efc529dca0028893a2d9 # version: v1
81
0 commit comments