Skip to content

Remove target directory for analysis in slither.yml workflow #12

Remove target directory for analysis in slither.yml workflow

Remove target directory for analysis in slither.yml workflow #12

Workflow file for this run

name: Slither Analysis
on: [push]
jobs:
analyze:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
# Optionally, set up Node.js if your project requires it
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
# Optionally, install JavaScript dependencies if your project requires it
- name: Install JavaScript Dependencies
run: yarn install --frozen-lockfile
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Install Foundry Dependencies
run: forge install
- name: Build Contracts
run: yarn build
# Run Slither static analyzer
- name: Run Slither
uses: crytic/[email protected]
with:
fail-on: "medium" # Action will fail if issues of medium severity or higher are found