Skip to content

handle conn closed in heartbeats #25

handle conn closed in heartbeats

handle conn closed in heartbeats #25

Workflow file for this run

name: Go
on:
push:
branches: [ develop, main ]
pull_request:
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: "1.23"
- name: Lint
run: |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.61.0
./bin/golangci-lint run --verbose
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: "1.23"
- name: Test
run: ENV=test go test -coverprofile=coverage.out -tags test -v -short $(go list ./... | grep -v /test/integration)
- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: unittest