feat(deploy): canonical Base Sepolia deployment + agent.vims.com framing #4
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| forge: | |
| name: forge build + test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Install Foundry | |
| uses: foundry-rs/foundry-toolchain@v1 | |
| with: | |
| version: nightly | |
| - name: Show forge version | |
| run: forge --version | |
| - name: Format check | |
| run: forge fmt --check | |
| continue-on-error: true | |
| - name: Build | |
| run: forge build --sizes | |
| - name: Test | |
| run: forge test -vvv | |
| env: | |
| FOUNDRY_FUZZ_RUNS: 256 | |
| - name: Gas snapshot | |
| run: forge snapshot --check || forge snapshot | |
| continue-on-error: true |