-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Reuben Rodrigues
committed
Nov 8, 2021
1 parent
d93dfe7
commit 228ab4a
Showing
1 changed file
with
22 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Security | ||
|
||
on: [push] | ||
|
||
jobs: | ||
main_job: | ||
runs-on: ubuntu-latest | ||
name: Slither Security | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Slither Static Analysis | ||
uses: Tenderize/slither-static-analysis-action@master | ||
with: | ||
slither-version: '0.8.1' | ||
run-npm-install: true | ||
high-threshold: 1 | ||
medium-threshold: 1 | ||
low-threshold: 1 | ||
optimization-threshold: 1 | ||
informative-threshold: 10 | ||
projectPath: "." |