Skip to content

[Cherry-pick-to-6.1] Add grpc window size config and change the defau… #4140

[Cherry-pick-to-6.1] Add grpc window size config and change the defau…

[Cherry-pick-to-6.1] Add grpc window size config and change the defau… #4140

Workflow file for this run

name: Unit Test
on:
push:
branches: [ master, tidb-6.1 ]
pull_request:
branches: [ master, tidb-6.1 ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16
- name: Test
run: go test ./...
race-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.16
- name: Test with race
run: go test -race ./...
golangci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
- name: Lint
uses: golangci/[email protected]