Skip to content

Slither Analysis

Slither Analysis #136

Workflow file for this run

name: slither
run-name: Slither Analysis
on: [push]
jobs:
analyze:
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
steps:
- uses: actions/checkout@v3
- name: Run Slither
uses: crytic/[email protected]
id: run-slither
with:
target: 'core/'
fail-on: none
slither-args: --config-file core/slither.config.json
sarif: slither.results.sarif
- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: ${{ steps.run-slither.outputs.sarif }}