Address CodeRabbit review: validate negative max_connections on all p… #328
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: Go Integration Tests | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| lfs: true | |
| - name: Set up Go | |
| uses: actions/setup-go@v4 | |
| with: | |
| go-version: '1.24' | |
| - name: Run table-diff simple pkey tests | |
| run: go test -count=1 -v ./tests/integration -run 'TestTableDiffSimplePK' | |
| - name: Run table-diff composite pkey tests | |
| run: go test -count=1 -v ./tests/integration -run 'TestTableDiffCompositePK' | |
| - name: Run table-repair tests | |
| run: go test -count=1 -v ./tests/integration -run 'TableRepair' | |
| - name: Run Merkle Tree simple pkey tests | |
| run: go test -count=1 -v ./tests/integration -run 'TestMerkleTreeSimplePK' | |
| - name: Run Merkle Tree composite pkey tests | |
| run: go test -count=1 -v ./tests/integration -run 'TestMerkleTreeCompositePK' | |
| - name: Run CDC regression tests | |
| run: go test -count=1 -v ./tests/integration -run 'CDC' | |
| - name: Run crash recovery origin-filter test | |
| run: go test -count=1 -v ./tests/integration -run 'TestTableDiffAgainstOriginWithUntil' | |
| - name: Run crash recovery origin-filter test | |
| run: go test -count=1 -v ./tests/integration -run 'TestAdvancedRepairPlan' | |
| - name: Run connection pool cap test | |
| run: go test -count=1 -v ./tests/integration -run 'TestRepsetDiff_MaxConnectionsCap' |