Skip to content

DEV-3779: Merging automata-dcap-solana #58

DEV-3779: Merging automata-dcap-solana

DEV-3779: Merging automata-dcap-solana #58

Workflow file for this run

name: Slither Static Analysis
# Runs only on PR merging to main
on:
pull_request:
branches: [ main ]
types: [ opened, reopened, synchronize, ready_for_review ]
workflow_dispatch:
jobs:
analyze:
runs-on: ubuntu-latest
# Do not run when PR is still a draft
if: ${{ !github.event.pull_request.draft }}
env:
commit_url: ${{ github.server_url }}/${{ github.repository }}/blob/${{ github.event.pull_request.head.sha }}/
defaults:
run:
working-directory: evm
steps:
- uses: actions/checkout@v3
- name: Run Slither
uses: crytic/[email protected]
id: slither
with:
fail-on: none
slither-args: --checklist --show-ignored-findings --markdown-root ${{ env.commit_url }}
sarif: results.sarif
- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: ${{ steps.slither.outputs.sarif }}