Skip to content

OSU 473 implement strategy base #15

OSU 473 implement strategy base

OSU 473 implement strategy base #15

Workflow file for this run

name: Slither Analysis
on:
push:
branches:
- master
pull_request:
jobs:
analyze:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
token: ${{ secrets.GH_TOKEN }}
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Slither analysis
uses: crytic/[email protected]
with:
fail-on: "high"
slither-config: slither.config.json
ignore-compile: true
- name: "Add summary"
run: |
echo "### Slither Analysis result" >> $GITHUB_STEP_SUMMARY
echo "Passed" >> $GITHUB_STEP_SUMMARY
- name: "Add summary"
run: |
echo "### Slither Analysis" >> $GITHUB_STEP_SUMMARY
echo "Passed" >> $GITHUB_STEP_SUMMARY