Skip to content

Bump github.com/keikoproj/inverse-exp-backoff from 0.0.3 to 0.0.4 #360

Bump github.com/keikoproj/inverse-exp-backoff from 0.0.3 to 0.0.4

Bump github.com/keikoproj/inverse-exp-backoff from 0.0.3 to 0.0.4 #360

Workflow file for this run

name: unit-test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
unit-test:
if: github.repository_owner == 'keikoproj'
name: unit-test
runs-on: ubuntu-22.04
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: 1.21
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Build
run: |
make all
- name: Test
run: |
make test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
files: ./cover.out
token: ${{ secrets.CODECOV_TOKEN }}