Skip to content

Implement retry logic with exponential backoff for connection errors #16

Implement retry logic with exponential backoff for connection errors

Implement retry logic with exponential backoff for connection errors #16

Workflow file for this run

name: Go Code Check
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: Build
run: make
- name: Vet
run: go vet ./...
- name: Test
run: make test