Redesign event archive interface to support variable-length transacti… #5
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: | |
| pull_request: | |
| env: | |
| FOUNDRY_PROFILE: default | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| name: Build & test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout (with submodules) | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Install Foundry | |
| uses: foundry-rs/foundry-toolchain@v1 | |
| with: | |
| version: stable | |
| - name: Check formatting | |
| run: forge fmt --check | |
| - name: Build | |
| run: forge build --sizes | |
| - name: Test | |
| run: forge test -vvv |