chore: bump SP1 to v5.2.4 and helios to v0.10.2 #125
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: CI | |
| on: | |
| pull_request: | |
| branches: | |
| - "**" | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| env: | |
| FOUNDRY_PROFILE: ci | |
| jobs: | |
| check: | |
| strategy: | |
| fail-fast: true | |
| name: Foundry project | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Install Foundry | |
| uses: foundry-rs/foundry-toolchain@v1 | |
| - name: Show Forge version | |
| working-directory: contracts/ | |
| run: | | |
| forge --version | |
| - name: Run Forge fmt | |
| working-directory: contracts/ | |
| run: | | |
| forge fmt --check src/ test/ script/ | |
| id: fmt | |
| - name: Run Forge build | |
| working-directory: contracts/ | |
| run: | | |
| forge build --sizes | |
| id: build | |
| # - name: Run Forge tests | |
| # working-directory: contracts/ | |
| # run: | | |
| # forge test -vvv | |
| # id: test |