From 29bd044e8d8df9a519bc4e51f16f9fe5f44dc16d Mon Sep 17 00:00:00 2001 From: dndll Date: Fri, 16 Feb 2024 11:31:05 +0000 Subject: [PATCH] ci: forge install dependencies --- .github/workflows/on_pull_request.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/on_pull_request.yml b/.github/workflows/on_pull_request.yml index 1028788..34b9322 100644 --- a/.github/workflows/on_pull_request.yml +++ b/.github/workflows/on_pull_request.yml @@ -57,7 +57,7 @@ jobs: - name: "Install cargo-nextest" run: cargo install cargo-nextest - name: "Run tests" - run: cargo nextest run --workspace --locked --no-fail-fast + run: cargo nextest run --workspace --locked --ignored --no-fail-fast test-solidity-contracts: name: "Test Solidity Contracts" @@ -72,5 +72,7 @@ jobs: . - name: "Install forge" run: cargo install --git https://github.com/foundry-rs/foundry --bins --locked anvil cast chisel forge + - name: "Forge install" + run: cd nearx/contract && forge install - name: "Run tests" run: cd nearx/contract && forge test -vv