Skip to content

chore(deps): bump google.golang.org/grpc from 1.57.0 to 1.57.1 #86

chore(deps): bump google.golang.org/grpc from 1.57.0 to 1.57.1

chore(deps): bump google.golang.org/grpc from 1.57.0 to 1.57.1 #86

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
paths:
- '**.go'
- 'go.mod'
- 'go.sum'
- 'Makefile'
- '.github/workflows/build.yml'
jobs:
Test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- name: Set up Go
uses: actions/setup-go@fac708d6674e30b6ba41289acaab6d4b75aa0753 # v4.0.1
with:
go-version-file: 'go.mod'
- name: "Run build"
run: make build
- name: "Run unit tests"
run: make test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3.1.4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}