test: add test for createERC20Quest with management fee #1096
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: | |
# push: | |
# branches: | |
# - main | |
# pull_request: | |
# jobs: | |
# analyze: | |
# runs-on: ubuntu-latest | |
# permissions: | |
# contents: read | |
# security-events: write | |
# steps: | |
# - name: Checkout repository | |
# uses: actions/checkout@v3 | |
# with: | |
# submodules: "recursive" | |
# # - name: "Install Foundry" | |
# # uses: "foundry-rs/foundry-toolchain@v1" | |
# # - name: "Build the Solidity code" | |
# # run: "forge build" | |
# - name: Run Slither | |
# uses: crytic/[email protected] | |
# id: slither | |
# with: | |
# node-version: 16 | |
# sarif: results.sarif | |
# fail-on: none | |
# - name: Upload SARIF file | |
# uses: github/codeql-action/upload-sarif@v2 | |
# with: | |
# sarif_file: ${{ steps.slither.outputs.sarif }} |