From 7067f8db755b0af9c995bb16c5a8735a2af9f225 Mon Sep 17 00:00:00 2001 From: zhom <2717306+zhom@users.noreply.github.com> Date: Mon, 28 Jul 2025 03:07:36 +0400 Subject: [PATCH] build: disable linting on windows arm --- .github/workflows/test.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 36c6ee7..c1287a4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -61,9 +61,11 @@ jobs: key: ${{ matrix.target }} - name: Check code formatting + if: matrix.os != 'windows-11-arm' run: cargo fmt --all -- --check - name: Run Clippy + if: matrix.os != 'windows-11-arm' run: cargo clippy --all-targets --all-features -- -D warnings - name: Build