Skip to content

fix read tcp i/o timeout in copy-shard #39 #29

fix read tcp i/o timeout in copy-shard #39

fix read tcp i/o timeout in copy-shard #39 #29

Workflow file for this run

name: Go
on:
push:
branches: [ dev, master ]
pull_request:
branches: [ dev, master ]
env:
GO111MODULE: on
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.21
- name: Fmt
run: ./checkfmt.sh
- name: Vet
run: go vet ./...
- name: Build
run: go build ./...
- name: Test
run: go test -race ./...