feat:update StorageGasOracle
in igpDeployer
#136
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: static-analysis | |
on: | |
# Triggers the workflow on pull request against main | |
pull_request: | |
branches: [main] | |
paths: | |
- 'solidity/**' | |
- '.github/workflows/static-analysis.yml' | |
jobs: | |
slither: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: yarn-cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
**/node_modules | |
.yarn | |
key: ${{ runner.os }}-yarn-cache-${{ hashFiles('./yarn.lock') }} | |
- name: yarn-install | |
run: yarn install | |
- name: foundry-install | |
uses: onbjerg/foundry-toolchain@v1 | |
- name: forge-build | |
run: cd solidity && forge build --build-info | |
- name: Static analysis | |
uses: crytic/[email protected] | |
id: slither | |
with: | |
target: 'solidity/' | |
slither-config: 'solidity/slither.config.json' | |
sarif: results.sarif | |
fail-on: none | |
ignore-compile: true | |
- name: Upload SARIF file | |
uses: github/codeql-action/upload-sarif@v2 | |
with: | |
sarif_file: ${{ steps.slither.outputs.sarif }} |