Skip to content
This repository was archived by the owner on Jul 19, 2025. It is now read-only.

chore(deps): bump google.golang.org/grpc from 1.53.0 to 1.56.3 #200

chore(deps): bump google.golang.org/grpc from 1.53.0 to 1.56.3

chore(deps): bump google.golang.org/grpc from 1.53.0 to 1.56.3 #200

Workflow file for this run

name: Test
on: [ push ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.19
uses: actions/setup-go@v3
with:
go-version: 1.19
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Install goimports
run: GO111MODULE=off go get golang.org/x/tools/cmd/goimports
- name: Lint
run: make lint-ci
- name: Build
run: make build
- name: Test
run: make test
golangci:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
version: v1.51