Skip to content

update v2-core

update v2-core #421

Workflow file for this run

name: Slither Analysis (bypassed)
on: [push]
jobs:
analyze:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup SSH
env:
LYRA_V2_SSH: ${{secrets.V2_CORE}}
run: mkdir $HOME/.ssh && echo "$LYRA_V2_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 }}