From 8a22b2a30af14ea2e93c6b1a38ad297d5089e9d5 Mon Sep 17 00:00:00 2001 From: Kurdistan Tech Ministry Date: Thu, 12 Feb 2026 05:25:25 +0300 Subject: [PATCH] fix: exclude revive-eth-rpc from clippy and stop VPS2 runner-8 subxt proc-macro in pezpallet-revive-eth-rpc fails to generate subxt_client module without cached artifacts. Also reduced VPS2 to single runner to prevent concurrent disk exhaustion. --- .github/workflows/checks.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 4788448a..0e82ab94 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -51,7 +51,8 @@ jobs: id: required run: | git config --global --add safe.directory '*' - cargo clippy --all-targets --all-features --locked --workspace --quiet + cargo clippy --all-targets --all-features --locked --workspace --quiet \ + --exclude pezpallet-revive-eth-rpc check-try-runtime: runs-on: ${{ needs.preflight.outputs.RUNNER }}