From 3c6a5a46efeea8ccf0e928a2f6dfa9cc008a89cd Mon Sep 17 00:00:00 2001 From: Paul Dicker Date: Wed, 14 Feb 2024 13:49:10 +0100 Subject: [PATCH] Run clippy also against Windows target --- .github/workflows/lint.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 3e06ad3209..1ee62986c8 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -25,6 +25,9 @@ jobs: - run: | cargo clippy ${{ env.ALL_NON_EXCLUSIVE_FEATURES }} --all-targets --color=always \ -- -D warnings + - run: | + cargo clippy ${{ env.ALL_NON_EXCLUSIVE_FEATURES }} --all-targets --color=always \ + -- -D warnings --target=x86_64-pc-windows-msvc - run: | cargo clippy --manifest-path fuzz/Cargo.toml --color=always \ -- -D warnings