Skip to content

Bump google.golang.org/grpc from 1.66.0 to 1.67.1 #452

Bump google.golang.org/grpc from 1.66.0 to 1.67.1

Bump google.golang.org/grpc from 1.66.0 to 1.67.1 #452

Workflow file for this run

name: Go
on:
push:
jobs:
mod:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache: true
- name: Tidy modules
run: go mod tidy
- name: Check for changes
run: git add . && git diff --staged --exit-code
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache: true
- name: Run tests
run: go test -v -race ./...