Files
tycho-execution/.github/workflows/slither.yml
royvardhan 42d1ab36fd fix: fix slither CI action
Took 5 seconds
2025-04-03 18:17:45 +01:00

24 lines
602 B
YAML

name: Slither Analysis
on:
push:
branches:
- main
pull_request:
jobs:
analyze:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Build the contracts
run: forge build --build-info
with:
target: "foundry/"
- uses: crytic/slither-action@f197989dea5b53e986d0f88c60a034ddd77ec9a8
with:
target: "foundry/"
ignore-compile: true
slither-args: "--filter-paths foundry/lib/"