From 7ef5b2ead5c3d552cff88918c39102a52a033d22 Mon Sep 17 00:00:00 2001 From: scx1332 Date: Thu, 9 Nov 2023 11:47:17 +0100 Subject: [PATCH] Proxy is already integrated in tests --- .github/workflows/ci.yml | 29 ----------------------------- 1 file changed, 29 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3b65cfcf..00e85feb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,35 +29,6 @@ jobs: - name: Clippy all run: cargo clippy --all-targets --all-features --all -- -D warnings - fmt_and_clippy_proxy: - name: Fmt and clippy proxy - timeout-minutes: 5 - - runs-on: ubuntu-latest - - steps: - - name: Checkout - uses: actions/checkout@v3 - with: - path: 'ext' - - - name: Copy proxy into workspace - run: | - cp -r ext/crates/web3_test_proxy/* . - rm -rf ext - - - name: Cache dependencies - uses: Swatinem/rust-cache@v2 - - - name: Fmt - run: cargo fmt -- --check - - - name: Clippy - run: cargo clippy -- -D warnings - - - name: Clippy all - run: cargo clippy --all-targets --all-features --all -- -D warnings - erc20_processor: name: ERC20 processor build only timeout-minutes: 20