From 7aadaefc9bbc2a02eaaea532746c746abd5e54ac Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sat, 26 Oct 2024 01:17:44 +0900 Subject: [PATCH] ci: Update config --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b0a3412..08af42a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -85,4 +85,5 @@ jobs: - run: cargo build --manifest-path tests/no-std/Cargo.toml --target thumbv6m-none-eabi - run: cargo minimal-versions build --workspace --no-private --detach-path-deps=skip-exact --all-features - run: cargo minimal-versions build --workspace --no-private --detach-path-deps=skip-exact --all-features --direct - if: matrix.rust != '1.37' + # -Z direct-minimal-versions requires Cargo 1.70. + if: (!(startsWith(matrix.rust, '1.3') || startsWith(matrix.rust, '1.4') || startsWith(matrix.rust, '1.5') || startsWith(matrix.rust, '1.6')))