Skip to content

exclude ajna token from slither #691

exclude ajna token from slither

exclude ajna token from slither #691

Workflow file for this run

name: Slither Analysis
on: [push]
jobs:
analyze:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install solc-select
run: |
pip install solc-select
id: solc
- name: Install Slither
run: |
pip install slither-analyzer
id: slither
- name: Analyze GrantFund
run: |
solc-select install 0.8.18 && solc-select use 0.8.18
slither src/grants/
continue-on-error: true
id: fund_analyzer