Prevent rollover of IPs in testnet config generation. #19683
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: Test | |
| on: | |
| pull_request: | |
| merge_group: | |
| push: | |
| branches: | |
| - main | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| part: ["00", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19"] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - id: filter | |
| uses: dorny/paths-filter@v3 | |
| with: | |
| filters: | | |
| code: | |
| - '**/*.go' | |
| - 'Makefile' | |
| - 'go.*' | |
| - run: echo "GO_VERSION=$(cat .github/workflows/go-version.env | grep GO_VERSION | cut -d '=' -f2)" >> $GITHUB_ENV | |
| if: steps.filter.outputs.code == 'true' | |
| - uses: actions/setup-go@v6 | |
| if: steps.filter.outputs.code == 'true' | |
| with: | |
| go-version: ${{ env.GO_VERSION }} | |
| - name: Run Go Tests | |
| if: steps.filter.outputs.code == 'true' | |
| run: | | |
| make test-group-${{ matrix.part }} NUM_SPLIT=20 |