- update Origination Typehashing to adhere properly to the eip-712 sp… #260
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: Lint, Test | |
on: push | |
env: | |
FOUNDRY_PROFILE: ci | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- run: yarn | |
- uses: foundry-rs/foundry-toolchain@v1 | |
- name: Lint | |
run: forge fmt --check | |
- name: Snapshot | |
run: forge snapshot --check --no-match-path '*fuzz*' | |
- name: Test | |
run: forge test -vvv |