fix: fix deployer create prediction, always run in isolate mode #588
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: Tests | |
| on: [push, pull_request] | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Install Foundry | |
| uses: onbjerg/foundry-toolchain@v1 | |
| with: | |
| version: nightly | |
| - name: Install dependencies | |
| run: forge install | |
| - name: Check contract sizes | |
| run: forge build --sizes | |
| - name: Run tests | |
| env: | |
| POLYGON_RPC_URL: ${{ secrets.POLYGON_RPC_URL }} | |
| AVALANCHE_RPC_URL: ${{ secrets.AVALANCHE_RPC_URL }} | |
| run: forge test -vv |