Skip to content

Update module google.golang.org/grpc to v1.60.1 #481

Update module google.golang.org/grpc to v1.60.1

Update module google.golang.org/grpc to v1.60.1 #481

Workflow file for this run

name: build and test
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version-file: go.mod
cache: true
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.50.1
args: --timeout 3m
skip-cache: true
skip-pkg-cache: true
skip-build-cache: true
- name: Run Go build
run: |-
go build ./...
- name: Run Go Test
run: |-
go test -v ./...