Skip to content

Bump google.golang.org/grpc from 1.60.1 to 1.62.1 #70

Bump google.golang.org/grpc from 1.60.1 to 1.62.1

Bump google.golang.org/grpc from 1.60.1 to 1.62.1 #70

Workflow file for this run

name: Test
on:
pull_request:
branches: [master]
push:
branches: [master]
jobs:
tests:
name: Running tests
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: Checkout
uses: actions/checkout@v4
- name: Code format
run: test -z "$(gofmt -d . | tee /dev/stderr)"
- name: Vet
run: go vet ./...
- name: Test
run: go test -race -covermode=atomic ./...