From a7d004b299df96df86827fee6b0e71318bd15341 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Fri, 28 Nov 2025 10:35:28 +0100 Subject: [PATCH] CI tweaks --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 694acf7..2af4ea6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,7 +2,7 @@ name: ci on: [push, pull_request] jobs: - check: + build: name: Check build strategy: matrix: @@ -11,7 +11,7 @@ jobs: steps: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@stable - - run: cargo check --release + - run: cargo build test: name: Run Tests @@ -30,7 +30,7 @@ jobs: steps: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@1.83 - - run: cargo check --release + - run: cargo check cross-check: name: Check Cross-Compilation @@ -46,7 +46,7 @@ jobs: - uses: dtolnay/rust-toolchain@stable with: targets: "armv7-unknown-linux-gnueabihf, thumbv7em-none-eabihf, thumbv6m-none-eabi" - - run: cargo check --release --target=${{matrix.target}} --no-default-features + - run: cargo check --target=${{matrix.target}} --no-default-features fmt: name: Check formatting