diff --git a/.github/workflows/slither.yml b/.github/workflows/slither.yml new file mode 100644 index 00000000..8275ba13 --- /dev/null +++ b/.github/workflows/slither.yml @@ -0,0 +1,20 @@ +name: Slither Analysis + +on: + pull_request: + push: + branches: + - main + - release/** + tags: + - "*" + +jobs: + analyze: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - uses: crytic/slither-action@v0.4.0 + with: + fail-on: medium \ No newline at end of file