From 8b81b9e6e0492aa33e6c17894c426e01a55088d7 Mon Sep 17 00:00:00 2001 From: Yuwei Ba Date: Thu, 28 Mar 2024 22:00:39 +0800 Subject: [PATCH] Update ci.yml Signed-off-by: Yuwei Ba --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 986b956f..1a3df563 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,12 +40,12 @@ jobs: - name: Run cargo clippy run: cargo clippy --all --all-features -- -D warnings - name: Run cargo test on non-macos - if: ${{ matrix.platform.os }} != 'macos-13' + if: ${{ matrix.platforms.os }} != 'macos-13' run: cargo test --all --all-features env: CLASH_RS_CI: 'true' - name: Run cargo test on macos - if: ${{ matrix.platform.os }} == 'macos-13' + if: ${{ matrix.platforms.os }} == 'macos-13' run: cargo test --all --all-features - name: Build artifacts run: sh ./scripts/build.sh "${{ matrix.platforms.target }}" "${{ matrix.static }}"