We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d93dfe7 commit 228ab4aCopy full SHA for 228ab4a
.github/workflows/slither-wrapper.yml
@@ -0,0 +1,22 @@
1
+name: Security
2
+
3
+on: [push]
4
5
+jobs:
6
+ main_job:
7
+ runs-on: ubuntu-latest
8
+ name: Slither Security
9
+ steps:
10
+ - name: Checkout
11
+ uses: actions/checkout@v2
12
+ - name: Slither Static Analysis
13
+ uses: Tenderize/slither-static-analysis-action@master
14
+ with:
15
+ slither-version: '0.8.1'
16
+ run-npm-install: true
17
+ high-threshold: 1
18
+ medium-threshold: 1
19
+ low-threshold: 1
20
+ optimization-threshold: 1
21
+ informative-threshold: 10
22
+ projectPath: "."
0 commit comments