Merge pull request #940 from gitcoindev/ubiquitypoolfacet-fuzz-tests #42
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: Deep Fuzz | |
on: | |
push: | |
branches: | |
- development | |
paths: | |
- '**.sol' | |
jobs: | |
deep-fuzz: | |
name: Deep Fuzz | |
runs-on: ubuntu-22.04 | |
env: | |
FOUNDRY_PROFILE: intense | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: nightly-5be158ba6dc7c798a6f032026fe60fc01686b33b | |
- name: Forge install | |
working-directory: packages/contracts | |
run: forge install | |
- name: Deep Fuzz Solidity Contracts | |
working-directory: packages/contracts | |
run: forge test |