-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (43 loc) · 1.32 KB
/
slither.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: Static Analysis
on:
push:
branches: "*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
sudo snap install solc
python -m pip install --upgrade pip
pip install slither-analyzer==0.8.2 solc-select==0.2.1
solc-select install 0.8.7
solc-select use 0.8.7
- name: Install submodules
run: |
git config --global url."https://github.com/".insteadOf "git@github.com:"
git submodule update --init --recursive
- name: Summary of static analysis
run: |
slither contracts --print human-summary
- name: Contract summary of static analysis
run: |
slither contracts --print contract-summary
- name: Function summary
run: |
slither contracts --print function-summary
- name: Inheritance
run: |
slither contracts --print inheritance
- name: Data dependency
run: |
slither contracts --print data-dependency
- name: Static Analysis
run: |
slither contracts
continue-on-error: true