add ability to call deployed universal signature validator for chains that do not support createless call #426
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: Test Chains | |
on: | |
workflow_dispatch: | |
workflow_call: | |
pull_request: | |
paths: | |
- src/chains/definitions/** | |
jobs: | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
timeout-minutes: 10 | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
- name: Set up foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
- name: Set up pnpm | |
uses: wevm/actions/.github/actions/pnpm@main | |
- name: Run tests | |
run: pnpm test:chains |