From 40f0a2a2b7c06003a20a6b7c81ce8887b8ddc10a Mon Sep 17 00:00:00 2001 From: TAMARA LIPOWSKI Date: Fri, 17 Jan 2025 16:49:29 -0500 Subject: [PATCH] fix: Specify foundry subdir when running slither in CI Otherwise there will be no contract to analyze --- .github/workflows/slither.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/slither.yml b/.github/workflows/slither.yml index a7dfab3..55a9f72 100644 --- a/.github/workflows/slither.yml +++ b/.github/workflows/slither.yml @@ -11,4 +11,6 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: crytic/slither-action@v0.4.0 \ No newline at end of file + - uses: crytic/slither-action@v0.4.0 + with: + target: 'foundry/' \ No newline at end of file