Merge pull request #4 from mattyg/2024-01-24-move-dep-into-submodule #13
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: QAKit 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" |