rpc(delegation): Query stakers for operator #1393
Workflow file for this run
This file contains 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: | |
pull_request: | |
push: | |
branches: | |
- develop | |
- main | |
- master | |
permissions: | |
contents: read | |
security-events: write | |
jobs: | |
analyze: | |
# disabled for now, since we don't have any Solidity files. | |
if: ${{ false }} | |
name: Run Slither | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
security-events: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Get Diff | |
uses: technote-space/[email protected] | |
with: | |
PATTERNS: | | |
**/*.sol | |
- name: Node dependencies Install | |
run: | | |
cd contracts && npm i | |
cp -r node_modules/@openzeppelin . | |
- name: Run Slither Action | |
uses: crytic/[email protected] | |
continue-on-error: true | |
id: slither | |
with: | |
sarif: slither.sarif | |
target: contracts/ | |
if: "env.GIT_DIFF" | |
- name: Upload SARIF file | |
uses: github/codeql-action/upload-sarif@v2 | |
with: | |
sarif_file: ${{ steps.slither.outputs.sarif }} | |
if: "env.GIT_DIFF" |