-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add ci checks for deposits (#42)
- Loading branch information
1 parent
364d420
commit 439c5c0
Showing
3 changed files
with
730 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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: | ||
|
Oops, something went wrong.