From 9dfd670265e03896d55c1c1f857abe5bcd1f60b0 Mon Sep 17 00:00:00 2001 From: weby-homelab Date: Thu, 2 Jul 2026 14:58:18 +0300 Subject: [PATCH] ci: restrict cargo-deny-action to Linux runners --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a3a18db..aac6f8e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,6 +20,7 @@ jobs: - run: cargo clippy -- -D warnings - run: cargo test - uses: EmbarkStudios/cargo-deny-action@v2 + if: runner.os == 'Linux' with: command: check advisories bans licenses sources - run: cargo build --release