Skip to content

Bump google.golang.org/protobuf from 1.35.1 to 1.35.2 in /grpc #329

Bump google.golang.org/protobuf from 1.35.1 to 1.35.2 in /grpc

Bump google.golang.org/protobuf from 1.35.1 to 1.35.2 in /grpc #329

Workflow file for this run

name: Coverage
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
coverage:
if: ${{ github.actor != 'dependabot[bot]' }}
strategy:
matrix:
module: [
'', 'otlp', 'gcp',
'grpc', 'http'
]
name: Coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 'stable'
cache-dependency-path: "**/go.sum"
- name: Coverage
run: go test -v -covermode=count -coverprofile=coverage.txt ./...
working-directory: ${{ matrix.module }}
- name: Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: ${{ matrix.module }}