Skip to content

Bump google.golang.org/protobuf from 1.34.0 to 1.34.1 #35

Bump google.golang.org/protobuf from 1.34.0 to 1.34.1

Bump google.golang.org/protobuf from 1.34.0 to 1.34.1 #35

Workflow file for this run

name: Testing
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
testing:
runs-on: ubuntu-22.04
strategy:
matrix:
go-version: ['1.19', '1.20', '1.21']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Test
run: go test -cover -v
- name: Bench
run: go test -bench .
- name: Bench with race detection
run: go test -race -bench .