From 3bdab495a5e4b0b4712afa05f8e7931beeb127e7 Mon Sep 17 00:00:00 2001 From: Laurenz Date: Sun, 5 Jul 2026 11:45:34 +0200 Subject: [PATCH] Check `no_std` build in CI --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c9e41cd..d498b81 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,6 +26,10 @@ jobs: components: rustfmt - name: Check formatting run: cargo fmt --all --check + - name: Check no_std + env: + RUSTFLAGS: -D warnings + run: cargo check --no-default-features - name: Check check env: RUSTFLAGS: -D warnings