Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

evm: add WormholeCctpTokenMessenger abstract and optimize CircleIntegration #48

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
evm: fix ci to use secret
a5-pickle committed Jan 16, 2024

Verified

This commit was signed with the committer’s verified signature.
a5-pickle A5 Pickle
commit 7599cbe984ce17dd9e87c81fb0b6ea12ff1635ba
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -23,7 +23,9 @@ jobs:
uses: "foundry-rs/foundry-toolchain@v1"

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

- name: "Add test summary"
run: |
6 changes: 5 additions & 1 deletion 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

@@ -28,6 +28,10 @@ build: dependencies
test: dependencies
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
forge test --fork-url ${TESTING_FORK_RPC} --match-path forge/tests/gas/* --fuzz-runs 512 --gas-report