try add srm, tests seem more broken though #1727
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 Analysis (Bypassed) | |
on: [push] | |
jobs: | |
analyze: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# - name: Setup SSH | |
# env: | |
# LYRA_UTILS_SSH: ${{secrets.LYRA_UTILS}} | |
# run: mkdir $HOME/.ssh && echo "$LYRA_UTILS_SSH" > $HOME/.ssh/id_rsa && chmod 600 $HOME/.ssh/id_rsa | |
# - name: Install Submodules | |
# run: git submodule update --init --recursive | |
# - name: Install Foundry | |
# uses: onbjerg/foundry-toolchain@v1 | |
# with: | |
# version: nightly | |
# - name: Install dependencies | |
# run: forge install | |
# - name: Run Slither | |
# uses: crytic/[email protected] | |
# id: slither | |
# with: | |
# target: "src/" | |
# sarif: results.sarif | |
# fail-on: medium # fail if new issues are introduced | |
# # Disabled until we go public so we can integrate with code-scanning | |
# - name: Upload SARIF file | |
# uses: github/codeql-action/upload-sarif@v2 | |
# with: | |
# sarif_file: ${{ steps.slither.outputs.sarif }} |