-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
disables slither action for now until configured correctly
- Loading branch information
Showing
2 changed files
with
16 additions
and
11 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# - Run Static Analyzer Tool "Slither" | ||
# - currently deactivated until we found time to configure it correctly | ||
|
||
name: Slither Analysis | ||
on: [push] | ||
jobs: | ||
run-slither: | ||
if: ${{ github.event.pull_request.draft == false }} # will only run once the PR is in "Ready for Review" state | ||
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: crytic/[email protected] | ||
with: | ||
node-version: 20 | ||
continue-on-error: true |