From 015ab97850d690234d76884c3627d1b8003e2850 Mon Sep 17 00:00:00 2001 From: Lachezar Lechev Date: Tue, 23 Jan 2024 00:26:40 +0200 Subject: [PATCH] fix: ci workflow for `asynch` Signed-off-by: Lachezar Lechev --- .github/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 17b2679..06e9604 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,6 +46,9 @@ jobs: - run: cargo build - run: cargo test - - run: cargo build -F asynch - - run: cargo test -F asynch + # embedded-hal-async has MSRV of 1.75 + - if: ${{ matrix.rust }} = '1.75' + run: cargo build -F asynch + - if: ${{ matrix.rust }} == '1.75' + run: cargo test -F asynch