Skip to content

chore: bump google.golang.org/grpc from 1.56.2 to 1.57.0 (#81) #264

chore: bump google.golang.org/grpc from 1.56.2 to 1.57.0 (#81)

chore: bump google.golang.org/grpc from 1.56.2 to 1.57.0 (#81) #264

Workflow file for this run

name: Continuous Integration
on:
pull_request:
push:
branches:
- main
jobs:
build_and_test:
name: pb-${{ matrix.protobuf_version }}
runs-on: ubuntu-latest
strategy:
matrix:
protobuf_version: [3.19.4]
fail-fast: false
steps:
- name: Checkout branch
uses: actions/checkout@v3
- name: Setup go
uses: actions/setup-go@v4
with:
go-version: 1.19
- name: Setup protoc
env:
PROTOBUF_VERSION: ${{ matrix.protobuf_version }}
run: ./install-protobuf.sh
- name: Protoc version
run: PATH=$HOME/bin:$PATH protoc --version
- name: Build server all
run: PATH=$HOME/bin:$PATH make buildserverall