Skip to content

Bump google.golang.org/grpc from 1.58.2 to 1.58.3 #211

Bump google.golang.org/grpc from 1.58.2 to 1.58.3

Bump google.golang.org/grpc from 1.58.2 to 1.58.3 #211

Workflow file for this run

name: CI
on:
push:
jobs:
build:
name: Compile
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-13, ubuntu-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version-file: go.mod
check-latest: true
- name: Compile
run: make install
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-13, ubuntu-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version-file: go.mod
check-latest: true
- name: Install certutil on macos
if: ${{ matrix.os == 'macos-13' }}
run: |
brew install nss
- name: Test
run: make test
vet:
name: Vet
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-13, ubuntu-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version-file: go.mod
check-latest: true
- uses: golangci/golangci-lint-action@v3
with:
args: --timeout 180s