Skip to content

Bump google.golang.org/grpc from 1.35.0 to 1.53.0 #44

Bump google.golang.org/grpc from 1.35.0 to 1.53.0

Bump google.golang.org/grpc from 1.35.0 to 1.53.0 #44

Workflow file for this run

name: tests
on:
push:
pull_request:
jobs:
test:
name: run tests with code coverage
runs-on: ubuntu-latest
strategy:
matrix:
go: [ "stable", "oldstable" ]
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
check-latest: true
cache: true
- name: go test
run: go test -v -race -coverprofile=coverage.txt -covermode=atomic ./...
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.txt
env_vars: GO
env:
GO: ${{ matrix.go }}