feat: Add Slither to CI

- make foundry workflow kebab case
This commit is contained in:
TAMARA LIPOWSKI
2025-01-17 12:23:10 -05:00
parent a16b2affed
commit f0620bd180
2 changed files with 14 additions and 0 deletions

33
.github/workflows/evm-foundry-ci.yml vendored Normal file
View File

@@ -0,0 +1,33 @@
name: EVM Foundry Continuous Integration
on:
push:
branches:
- main
pull_request:
jobs:
check:
name: Foundry
runs-on: ubuntu-latest
env:
RPC_URL: ${{ secrets.ETH_RPC_URL }}
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Check formatting
run: forge fmt --check
working-directory: foundry
- name: Run tests
run: forge test -vvv
working-directory: foundry
- name: Run snapshot
run: NO_COLOR=1 forge snapshot >> $GITHUB_STEP_SUMMARY
working-directory: foundry