Or 1948 make l1 contracts deploy script #178
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
name: 'Deposit and Withdrawal End To End Test' | |
on: | |
pull_request: | |
jobs: | |
deposit-withdrawal-e2e-tests: | |
name: 'Deposit and Withdrawal E2E tests' | |
runs-on: ubuntu-latest | |
container: | |
image: tokamaknetwork/thanos-ci-builder:latest | |
steps: | |
- name: Check CPUs | |
run: lscpu && echo | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Add repository to git safe directories | |
run: git config --global --add safe.directory $GITHUB_WORKSPACE | |
- name: Git submodules | |
run: git submodule update --init --recursive | |
- name: Setup | |
run: | | |
make devnet-allocs | |
- name: Run deposit withdrawal e2e tests | |
run: make test-deposit-withdrawal | |
working-directory: op-e2e | |
- name: Run test actions e2e tests | |
run: make test-e2e | |
working-directory: op-e2e |