Skip to content

Commit

Permalink
Merge pull request #377 from ulasanil/master
Browse files Browse the repository at this point in the history
Slither Github Actions integration
  • Loading branch information
MaximStanciu8 authored Sep 26, 2023
2 parents 2cb3041 + aba7f0f commit 0b8e7a7
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/slither.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Slither Analysis
on: [push]
jobs:
analyze:
runs-on: ubuntu-latest
permissions:
security-events: write
steps:
- uses: actions/checkout@v3

- name: Run Slither
uses: crytic/[email protected]
id: slither
with:
sarif: results.sarif
fail-on: none
target: bridge/contracts/

- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: ${{ steps.slither.outputs.sarif }}

0 comments on commit 0b8e7a7

Please sign in to comment.