From 3051c91a3861a961900a76a5e4cff227d182f221 Mon Sep 17 00:00:00 2001 From: Evian-Zhang Date: Fri, 26 Jul 2024 23:25:09 +0800 Subject: [PATCH] Fix CI bug --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2a6525a..207123e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,6 +33,8 @@ jobs: target: i686-pc-windows-msvc steps: - uses: actions/checkout@v4 + - name: Install corresponding target + run: rustup target add ${{ matrix.target }} - name: Build all features run: cargo build --verbose --all-features --target ${{ matrix.target }} - name: Run tests