Skip to content

[PLAT-3460] Add backoff for post-handshake reconnects. (#587) #1241

[PLAT-3460] Add backoff for post-handshake reconnects. (#587)

[PLAT-3460] Add backoff for post-handshake reconnects. (#587) #1241

Workflow file for this run

name: lint
on:
push:
tags:
- v*
branches:
- master
pull_request:
permissions:
contents: read
jobs:
golangci:
strategy:
matrix:
os: [ubuntu-latest]
go-version: [1.24.x]
name: golangci-lint
runs-on: ${{ matrix.os }}
steps:
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- uses: actions/checkout@v4
with:
fetch-depth: '0'
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.64.8
args: --new-from-merge-base origin/master
- name: verify go modules
run: go mod tidy && git diff --exit-code go.mod go.sum
- name: gofmt
run: |
go fmt ./...
git diff --exit-code