Skip to content

Bump google.golang.org/grpc from 1.61.0 to 1.62.0 #266

Bump google.golang.org/grpc from 1.61.0 to 1.62.0

Bump google.golang.org/grpc from 1.61.0 to 1.62.0 #266

Workflow file for this run

name: Build and test
on:
push:
branches:
- main
pull_request:
paths:
- '.github/workflows/test.yml'
- '**Makefile'
- '**.go'
- '**.proto'
- 'go.mod'
- 'go.sum'
jobs:
test-linux:
name: Build all and test on ubuntu-linux
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.21
uses: actions/setup-go@v4
with:
go-version: 1.21
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go1.21-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go1.21-
- name: Build
run: make all -B
- name: Test
run: make test