Skip to content

Bump google.golang.org/grpc from 1.63.2 to 1.65.0 #158

Bump google.golang.org/grpc from 1.63.2 to 1.65.0

Bump google.golang.org/grpc from 1.63.2 to 1.65.0 #158

Workflow file for this run

name: lint-test
on:
push:
branches:
- main
tags:
- 'v*'
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache: true
- name: Install golangci-lint
run: go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
- name: Run golangci-lint
run: golangci-lint run ./...
test:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache: true
- name: Run tests
run: make testacc