Skip to content

Bump google.golang.org/grpc from 1.69.0 to 1.69.2 #31

Bump google.golang.org/grpc from 1.69.0 to 1.69.2

Bump google.golang.org/grpc from 1.69.0 to 1.69.2 #31

Workflow file for this run

name: Unit
on:
pull_request:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ '1.23' ]
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
cache: true
- name: Install dependencies
run: go get .
- name: Test with Go
run: go test -json ./...