Updated handler to surgically extract only the 2 IBC assets that are … #1480
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: Verify Statesync | |
| on: [push, pull_request] | |
| jobs: | |
| verify_statesync: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up shell | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y shellcheck | |
| - name: Run verify.sh script | |
| run: | | |
| chmod +x scripts/statesync.bash | |
| timeout 5m bash scripts/statesync.bash || true | |
| - name: Check script with ShellCheck | |
| run: | | |
| shellcheck scripts/statesync.bash |