-
Notifications
You must be signed in to change notification settings - Fork 192
59 lines (58 loc) · 1.49 KB
/
analyse.yml
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
56
57
58
59
name: Analysis
#on: [pull_request]
#
#jobs:
# slither:
# name: Slither
# runs-on: ubuntu-latest
#
# permissions:
# contents: read
# security-events: write
#
# steps:
# - uses: actions/checkout@v4
#
# - name: Common setup
# uses: ./.github/workflows/setup
#
# - name: Install poetry
# run: pipx install poetry
#
# - uses: actions/setup-python@v5
# with:
# python-version: "3.12"
# cache: "poetry"
#
# - name: Install dependencies
# run: poetry install --no-root
#
# - name: Versions
# run: >
# poetry --version &&
# python --version &&
# echo "slither $(poetry run slither --version)" &&
# poetry run slitherin --version
#
# - name: Run slither
# run: >
# poetry run slither . \
# --no-fail-pedantic \
# --compile-force-framework hardhat \
# --sarif results.sarif \
# --exclude pess-strange-setter,pess-arbitrary-call-calldata-tainted
#
# - name: Check results.sarif presence
# id: results
# if: always()
# shell: bash
# run: >
# test -f results.sarif &&
# echo 'value=present' >> $GITHUB_OUTPUT ||
# echo 'value=not' >> $GITHUB_OUTPUT
#
# - name: Upload results.sarif file
# uses: github/codeql-action/upload-sarif@v3
# if: ${{ always() && steps.results.outputs.value == 'present' }}
# with:
# sarif_file: results.sarif