From 71118dc4393047b1fdfc019c94448e7c0f343e75 Mon Sep 17 00:00:00 2001 From: Anton Suprunchuk Date: Tue, 14 Mar 2023 19:03:48 +0800 Subject: [PATCH] feat: add a hard check for no-std targets (#23) --- .github/workflows/test.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index dbc5d04..68e7f58 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -29,8 +29,9 @@ jobs: toolchain: stable profile: minimal override: true + target: thumbv7em-none-eabi - name: Build without std - run: cargo build --no-default-features + run: cargo build --no-default-features --target thumbv7em-none-eabi lint: runs-on: ubuntu-latest steps: