Skip to content

Bump google.golang.org/grpc from 1.55.0 to 1.57.0 #45

Bump google.golang.org/grpc from 1.55.0 to 1.57.0

Bump google.golang.org/grpc from 1.55.0 to 1.57.0 #45

Workflow file for this run

name: tests
on:
push:
branches: [ main ]
pull_request:
workflow_dispatch:
jobs:
unit:
strategy:
fail-fast: false
matrix:
go-version: [ 1.18.x, 1.19.x, 1.20.x ]
os: [ ubuntu, windows, macOS ]
concurrency:
group: unit-${{ github.ref }}-${{ matrix.os }}-${{ matrix.go-version }}
cancel-in-progress: true
env:
OS: ${{ matrix.os }}-latest
GO: ${{ matrix.go-version }}
runs-on: ${{ matrix.os }}-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
cache: true
- name: Test
run: go test -race -coverprofile unit.txt -covermode atomic ./...
- name: Upload coverage report to Codecov
uses: codecov/codecov-action@v3
with:
file: ./unit.txt
flags: unit,${{ matrix.os }},go-${{ matrix.go-version }}
name: unit