Skip to content

Commit

Permalink
evm: shh
Browse files Browse the repository at this point in the history
  • Loading branch information
a5-pickle committed Jan 15, 2024
1 parent bdf7b77 commit 19c4589
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
uses: "foundry-rs/foundry-toolchain@v1"

- name: "Run the tests"
run: "cd evm && make test"
run: "CI_FORK_RPC=${{ secrets.POLYGON_MUMBAI_RPC }} cd evm && make ci"

- name: "Add test summary"
run: |
Expand Down
8 changes: 6 additions & 2 deletions evm/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
include env/testing.env

.PHONY: dependencies test clean all
.PHONY: dependencies test clean all ci

all: build

Expand All @@ -26,7 +26,11 @@ build: dependencies

.PHONY: test
test: dependencies
forge test --fork-url ${TESTING_FORK_RPC} -vv --fail-fast --fuzz-runs 128
forge test --fork-url ${TESTING_FORK_RPC} -vv

.PHONY: ci
ci: dependencies
forge test --fork-url ${CI_FORK_RPC} -vv --fail-fast

.PHONY: gas-report
gas-report: dependencies
Expand Down

0 comments on commit 19c4589

Please sign in to comment.