Skip to content

chore: migrate E2E deployment test to Foundry #361

chore: migrate E2E deployment test to Foundry

chore: migrate E2E deployment test to Foundry #361

Workflow file for this run

name: Lint
on:
workflow_dispatch:
pull_request:
paths:
- '**.sol'
push:
branches:
- main
paths:
- '**.sol'
env:
FOUNDRY_PROFILE: ci
jobs:
lint:
strategy:
fail-fast: true
name: Foundry project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Check Forge fmt
run: forge fmt --check
id: format