fix: move to a modern EIP-712 structs module #4
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@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python 3 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
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: python scripts/wait.py | |
- name: Prepare environment | |
run: echo "Prepare env" | |
- name: Run tests | |
run: python -m unittest discover -s tests |