chore: introduced check for emitting event correctly #901
Workflow file for this run
This file contains hidden or 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: Heavy Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - "contracts/**" | |
| - "lib/**" | |
| - ".github/**" | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - "contracts/**" | |
| - "lib/**" | |
| - ".github/**" | |
| jobs: | |
| run-heavy-tests: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| submodules: recursive | |
| - name: install foundry | |
| uses: onbjerg/foundry-toolchain@v1 | |
| with: | |
| version: nightly | |
| - name: run tests | |
| run: forge test --force -vvv --gas-report --match-contract HEAVY_FUZZING | |
| env: | |
| FOUNDRY_FUZZ_RUNS: 1000 | |
| MAINNET_FORK_RPC_URL: ${{ secrets.MAINNET_FORK_RPC_URL }} |