Skip to content

Commit

Permalink
ci: add slither pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedali8 committed Sep 3, 2023
1 parent e7e765c commit a37bd5e
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/slither.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: "Slither Analysis"

on:
workflow_dispatch:
pull_request:
push:
branches:
- "main"

jobs:
analyze:
runs-on: "ubuntu-latest"
permissions:
actions: "read"
contents: "read"
security-events: "write"
steps:
- name: "Check out the repo"
uses: "actions/checkout@v3"
with:
submodules: "recursive"

- name: "Run Slither analysis"
uses: "crytic/[email protected]"
id: "slither" # Required to reference this step in the next step.
with:
fail-on: "none" # Required to avoid failing the CI run regardless of findings.
node-version: 16
sarif: "results.sarif"
solc-version: "0.8.19"

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

- name: "Add Slither summary"
run: |
echo "## Slither result" >> $GITHUB_STEP_SUMMARY
echo "✅ Uploaded to GitHub code scanning" >> $GITHUB_STEP_SUMMARY
4 changes: 4 additions & 0 deletions slither.config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"detectors_to_exclude": "naming-convention,solc-version",
"filter_paths": "(lib|test|scripts)"
}

0 comments on commit a37bd5e

Please sign in to comment.