chore: migrate E2E deployment test to Foundry #361
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 | |
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 |