Cut v6.4.0 tag atop head of release/v6.4 branch (#3169)
#10319
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: Forge test | |
| on: | |
| pull_request: | |
| merge_group: | |
| push: | |
| branches: | |
| - main | |
| - release/** | |
| 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 | |
| with: | |
| # Pin to stable for predictable CI. If tests fail after a Foundry update, | |
| # either fix compatibility or pin to a specific version (e.g., 1.5.1). | |
| # See: | |
| # - https://github.com/foundry-rs/foundry/releases | |
| # - https://github.com/foundry-rs/foundry-toolchain | |
| version: stable | |
| - name: Run Forge build | |
| run: | | |
| forge --version | |
| forge build --evm-version=prague | |
| id: build | |
| - name: Run Forge tests | |
| run: | | |
| forge test -vvv --evm-version=prague | |
| id: test |