Skip to content

update imports

update imports #6

Workflow file for this run

name: Slither Analysis
on: [push]
jobs:
analyze:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# This is technically not needed as slither will try to install foundry but
# I found the installer flakey on CI.
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Use Node.js
uses: actions/setup-node@v3
- uses: crytic/[email protected]
with:
slither-args: "--filter-paths=\"lib\" --exclude-dependencies"