CI: Aderyn Analysis #82
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Slither Analyze | |
on: | |
push: | |
branches: | |
- mainnet | |
- testnet | |
- "feature/*" | |
- "features/*" | |
- "feat/*" | |
- "feats/*" | |
pull_request: | |
branches: | |
- mainnet | |
- testnet | |
- "feature/*" | |
- "features/*" | |
- "feat/*" | |
- "feats/*" | |
- "release/*" | |
env: | |
FOUNDRY_PROFILE: ci | |
jobs: | |
check: | |
strategy: | |
fail-fast: true | |
name: Foundry project | |
runs-on: ubuntu-latest | |
env: | |
ETHERSCAN_API_KEY: ${{ secrets.ETHERSCAN_API_KEY }} | |
INFURA_API_KEY: ${{ secrets.INFURA_API_KEY }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: nightly-2b1f8d6dd90f9790faf0528e05e60e573a7569ce | |
- name: Install package with soldeer | |
run: forge soldeer install | |
- name: Recursively update dependencies | |
run: | | |
chmod +x ./update-deps.sh | |
./update-deps.sh | |
id: update-deps | |
- name: Run Forge build | |
run: | | |
forge --version | |
forge build | |
id: build | |
- name: Install Slither for security analysis | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y python3-pip | |
python3 -m pip install slither-analyzer | |
- name: Run Slither analysis | |
run: | | |
slither . --exclude-low --exclude-medium --exclude-informational --exclude-dependencies --filter-paths "dependencies/|mocks/" --exclude-optimization | |
id: slither |