From f626e33e72d4863b68da89099cf60ce14de3e114 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Mon, 13 Dec 2021 00:11:40 +0100 Subject: [PATCH] simplify CI --- .github/workflows/ci.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5a9dad0..393eecb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,9 +16,7 @@ jobs: override: true - uses: actions-rs/cargo@v1 with: - use-cross: true command: check - args: --target thumbv6m-none-eabi fmt: name: Rustfmt @@ -50,9 +48,8 @@ jobs: - run: rustup component add clippy - uses: actions-rs/cargo@v1 with: - use-cross: true command: clippy - args: --target thumbv6m-none-eabi -- -D warnings + args: -- -D warnings ci: if: ${{ success() }}