merge feature/add-mainnet-config into develop #68
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: Smart Contract Security Analysis | |
on: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- develop | |
- main | |
jobs: | |
analyze: | |
name: Smart Contract Static Analysis | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
security-events: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Node.js and Yarn | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20.15.0' | |
cache: 'yarn' | |
- name: Install dependencies with Yarn | |
run: | | |
yarn install | |
- name: Run Slither | |
uses: crytic/[email protected] | |
id: slither | |
with: | |
fail-on: none | |
continue-on-error: true |