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: Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
strategy:
matrix:
module: [
'', 'otlp', 'gcp',
'grpc', 'examples/grpc',
'http', 'examples/http'
]
go-version: [ 'stable', 'oldstable' ]
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
cache-dependency-path: "**/go.sum"
- name: Race Test
run: go test -v -shuffle=on -count=10 -race ./...
working-directory: ${{ matrix.module }}
- name: Test
run: go test -shuffle=on -v ./...
working-directory: ${{ matrix.module }}
all:
if: ${{ always() }}
runs-on: ubuntu-latest
name: All Tests
needs: test
steps:
- name: Check test matrix status
if: ${{ needs.test.result != 'success' }}
run: exit 1