From 5d06b3373e98ebbc2faa5229fea29e7625565073 Mon Sep 17 00:00:00 2001 From: mertwole Date: Wed, 17 Jul 2024 09:59:19 +0000 Subject: [PATCH] Concurrency --- .github/workflows/ci.yml | 4 ++++ ethereum/client/src/tests.rs | 1 + 2 files changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e0b21e21..1917ff41 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,6 +8,10 @@ on: branches: - main +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + env: CARGO_TERM_COLOR: always diff --git a/ethereum/client/src/tests.rs b/ethereum/client/src/tests.rs index 80c96487..b0ae3455 100644 --- a/ethereum/client/src/tests.rs +++ b/ethereum/client/src/tests.rs @@ -64,6 +64,7 @@ pub struct BlockMerkleRootProof { pub merkle_root: B256, } +#[allow(dead_code)] #[derive(Debug, Clone)] struct DeploymentEnv { pub wvara_erc20: Address,