-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change how slither is installed and run
- Loading branch information
1 parent
bf87b12
commit 5af381d
Showing
1 changed file
with
7 additions
and
3 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -72,12 +72,16 @@ jobs: | |
name: Run slither | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Setup Slither1 | ||
uses: sudo apt install python3-setuptools | ||
- name: Setup Slither2 | ||
uses: sudo apt install python3-pip | ||
- name: Setup Slither3 | ||
uses: sudo pip3 install doge | ||
- name: Checkout Code | ||
uses: actions/checkout@v3 | ||
- name: Run slither | ||
uses: crytic/[email protected] | ||
with: | ||
slither-args: --compile-force-framework forge --foundry-out-directory foundry-out | ||
uses: slither --compile-force-framework forge --foundry-out-directory foundry-out . | ||
publish: | ||
name: Publish to NPM (dry run) | ||
runs-on: ubuntu-latest | ||
|