Skip to content

Document DelegateCall requirement for proposeTransactionsWithSignature to prevent signature validation errors #38

Document DelegateCall requirement for proposeTransactionsWithSignature to prevent signature validation errors

Document DelegateCall requirement for proposeTransactionsWithSignature to prevent signature validation errors #38

Workflow file for this run

name: CI
on:
pull_request:
types: [opened, synchronize]
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
fmt:
strategy:
fail-fast: true
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: stable
- name: Format
run: |
forge fmt --check
id: fmt
test:
strategy:
fail-fast: true
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: stable
- name: Test
run: |
forge test -vvv
id: test