Check object funds withdraw sufficiency during execution #27791
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: Split Cluster Check | |
| on: | |
| pull_request: | |
| jobs: | |
| validate-mainnet: | |
| runs-on: ubuntu-ghcloud | |
| steps: | |
| - name: checkout code repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # pin@v6.0.2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Run split cluster check script | |
| id: mn-split-cluster-check | |
| run: | | |
| SUI_PROTOCOL_CONFIG_CHAIN_OVERRIDE=mainnet \ | |
| scripts/compatibility/split-cluster-check.sh origin/mainnet ${{ github.sha }} | |
| validate-testnet: | |
| runs-on: ubuntu-ghcloud | |
| steps: | |
| - name: checkout code repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # pin@v6.0.2 | |
| with: | |
| fetch-depth: 0 | |
| - name: Run split cluster check script | |
| id: tn-split-cluster-check | |
| run: | | |
| SUI_PROTOCOL_CONFIG_CHAIN_OVERRIDE=testnet \ | |
| scripts/compatibility/split-cluster-check.sh origin/testnet ${{ github.sha }} |