Skip to content

Bump google.golang.org/grpc from 1.53.0 to 1.56.3 in /examples (#62) #237

Bump google.golang.org/grpc from 1.53.0 to 1.56.3 in /examples (#62)

Bump google.golang.org/grpc from 1.53.0 to 1.56.3 in /examples (#62) #237

Workflow file for this run

name: Go
on: [push]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: 1.20
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Get dependencies
run: go get -v -t -d ./...
- name: Build
run: go build -v .
# Running tests with and without the race checker, as certain tests are
# only run when the race checker is not enabled
- name: Test
run: go test -v -coverprofile=profile.cov ./...
- name: Coverage
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: profile.cov
- name: Test (race)
run: go test -race -v ./...
- name: Install Linter
run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s v1.53.2
- name: Lint
run: ./bin/golangci-lint run .