Skip to content

Move things out of /src/ folders #2

Move things out of /src/ folders

Move things out of /src/ folders #2

Workflow file for this run

name: fmt
on:
push:
branches: ["main"]
paths-ignore:
- README.md
- .gitignore
pull_request:
branches: ["*"]
paths-ignore:
- README.md
- .gitignore
env:
FOUNDRY_PROFILE: ci
jobs:
check:
timeout-minutes: 30
strategy:
fail-fast: true
name: forge fmt
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Run Forge fmt
run: |
forge fmt --check
id: fmt