Skip to content

Bump go.etcd.io/etcd/client/v3 from 3.5.13 to 3.5.16 #187

Bump go.etcd.io/etcd/client/v3 from 3.5.13 to 3.5.16

Bump go.etcd.io/etcd/client/v3 from 3.5.13 to 3.5.16 #187

Workflow file for this run

name: "Codecov"
# Run workflow each time code is pushed to your repository and on a schedule.
# The scheduled workflow runs every at 00:00 on Sunday UTC time.
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
env:
GO111MODULE: on
steps:
- name: Checkout Source
uses: actions/checkout@v4
- name: Run go test for coverage
run: go test ./... -race -coverprofile=coverage.out -covermode=atomic
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}