Skip to content

Try around with yul too deep (This PR just for reference only for exploring purposes) #446

Try around with yul too deep (This PR just for reference only for exploring purposes)

Try around with yul too deep (This PR just for reference only for exploring purposes) #446

Workflow file for this run

name: lint
on:
workflow_dispatch:
pull_request:
env:
FOUNDRY_PROFILE: ir
jobs:
check:
strategy:
fail-fast: true
name: Foundry project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: "nightly-de33b6af53005037b463318d2628b5cfcaf39916"
- name: Install dependencies
run: forge install
- name: Run Forge build
run: |
forge --version
id: build
- name: Run Forge Format
run: |
forge fmt --check
id: format