From d45628d7c5ee1c2fe2e523f2f60f4bb012caa0c6 Mon Sep 17 00:00:00 2001 From: ZeWaka Date: Thu, 22 Aug 2024 21:14:09 -0700 Subject: [PATCH] target win7 with the CI i guess actually --- .github/workflows/rust.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index faada34e..91b573ea 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -14,7 +14,7 @@ jobs: - uses: dtolnay/rust-toolchain@nightly with: - targets: i686-pc-windows-msvc + targets: i686-win7-windows-msvc components: clippy, rustfmt, rust-src - uses: dtolnay/rust-toolchain@nightly @@ -25,7 +25,7 @@ jobs: - uses: Swatinem/rust-cache@v2 - name: Clippy (all features) - run: cargo clippy --target i686-pc-windows-msvc --features all --locked -- -D warnings + run: cargo clippy --target i686-win7-windows-msvc --features all --locked -- -D warnings - name: Rustfmt run: cargo fmt -- --check