fix: zks_l1_chain_id not returning int type #35
Workflow file for this run
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: Run tests | |
on: | |
workflow_dispatch: | |
pull_request: | |
branch: main | |
types: [ opened, reopened, synchronize ] | |
permissions: | |
contents: read # for checkout | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python 3 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.8' | |
cache: 'pip' # caching pip dependencies | |
- name: Install dependencies | |
run: pip install -r requirements.txt | |
- name: Run local-setup | |
run: | | |
git clone https://github.com/matter-labs/local-setup.git | |
pushd local-setup | |
docker-compose up -d | |
popd | |
- name: Wait for local-setup to be ready | |
run: make wait | |
- name: Prepare environment | |
run: make prepare-environment | |
- name: Run tests | |
run: make run-tests |