-
Notifications
You must be signed in to change notification settings - Fork 345
55 lines (45 loc) · 1.78 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
55
name: Slither scanner
on: pull_request
jobs:
slither-l1:
name: Slither check for L1 contracts
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18.18.0
cache: yarn
- name: Install dependencies
run: yarn
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install foundry-zksync
run: |
mkdir ./foundry-zksync
curl -LO https://github.com/matter-labs/foundry-zksync/releases/download/nightly/foundry_nightly_linux_amd64.tar.gz
tar zxf foundry_nightly_linux_amd64.tar.gz -C ./foundry-zksync
chmod +x ./foundry-zksync/forge ./foundry-zksync/cast
echo "$PWD/foundry-zksync" >> $GITHUB_PATH
- name: Install Slither
run: |
pip install slither-analyzer
- name: Remove non-compiled files
run: |
rm -rf ./l1-contracts/contracts/state-transition/utils/
rm -rf ./l1-contracts/contracts/state-transition/verifiers/DualVerifier.sol
rm -rf ./l1-contracts/contracts/state-transition/verifiers/VerifierPlonk.sol
rm -rf ./l1-contracts/contracts/state-transition/verifiers/VerifierFflonk.sol
rm -rf ./l1-contracts/contracts/state-transition/verifiers/TestnetVerifier.sol
rm -rf ./l1-contracts/contracts/dev-contracts/test/PlonkVerifierTest.sol
rm -rf ./l1-contracts/contracts/dev-contracts/test/PlonkVerifierRecursiveTest.sol
- name: Run Slither
working-directory: l1-contracts
run: |
slither --config ./slither.config.json .