Skip to content

Bump google.golang.org/protobuf from 1.31.0 to 1.32.0 #25

Bump google.golang.org/protobuf from 1.31.0 to 1.32.0

Bump google.golang.org/protobuf from 1.31.0 to 1.32.0 #25

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@v3
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 .