Files
tycho-execution/.github/workflows/slither.yml
TAMARA LIPOWSKI 96809d4801 fix: Filter paths when running slither in CI
- We don't want to check submodules, solidity versions are different
2025-01-20 17:35:00 -05:00

17 lines
308 B
YAML

name: Slither Analysis
on:
push:
branches:
- main
pull_request:
jobs:
analyze:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: crytic/slither-action@v0.4.0
with:
target: 'foundry/'
slither-args: '--filter-paths foundry/lib/'