From 78608a1251b63a920217d144ad537a1ad9c4edf2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D1=80=D1=82=D1=91=D0=BC=20=D0=9F=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=BE=D0=B2=20=5BArtyom=20Pavlov=5D?= Date: Fri, 14 Jun 2024 16:18:40 +0300 Subject: [PATCH] Run Clippy for `std` and `custom` crate features --- .github/workflows/workspace.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/workspace.yml b/.github/workflows/workspace.yml index 04dbc856..4a0871a8 100644 --- a/.github/workflows/workspace.yml +++ b/.github/workflows/workspace.yml @@ -21,6 +21,10 @@ jobs: with: toolchain: nightly-2024-06-11 components: clippy,rust-src + - name: `std` feature + run: cargo clippy --features std + - name: `custom` feature + run: cargo clippy -Zbuild-std=core --target riscv32i-unknown-none-elf --features custom - name: iOS (apple-other.rs) run: cargo clippy -Zbuild-std=core --target x86_64-apple-ios - name: ESP-IDF (espidf.rs)