Add instructions for factory and chain deployments, and small tweaks for custom network deployments #1116
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Slither Analysis | |
on: | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
analyze: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Run Slither | |
uses: crytic/[email protected] | |
id: slither | |
with: | |
sarif: results.sarif | |
fail-on: medium | |
slither-args: --skip-assembly | |
- name: Upload SARIF file | |
if: always() | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: ${{ steps.slither.outputs.sarif }} |