17 lines
330 B
YAML
17 lines
330 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/,foundry/node_modules/' |