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

chore: add ci checks for deposits #42

Merged
merged 5 commits into from
Jan 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
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
12 changes: 12 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,22 @@ jobs:
- name: Run doc tests
run: cargo test --all-features --doc

- name: Checkout local setup repository
uses: actions/checkout@v4
with:
repository: matter-labs/local-setup
path: dockerized-node
- name: Set up docker build
uses: docker/[email protected]
- name: Start dockerized node
run: |
docker compose -f "./dockerized-node/docker-compose.yml" up -d --build --wait --wait-timeout 2000
- name: Run examples
run: |
cargo run --example showcase
cargo run --example deploy
cargo run --example deposit_eth
cargo run --example deposit_erc20

document:
needs:
Expand Down
Loading
Loading