Skip to content

chore(deps): bump google.golang.org/grpc from 1.62.1 to 1.63.2 #181

chore(deps): bump google.golang.org/grpc from 1.62.1 to 1.63.2

chore(deps): bump google.golang.org/grpc from 1.62.1 to 1.63.2 #181

Workflow file for this run

name: golang
on: [push]
jobs:
build:
runs-on: ubuntu-latest
# Service containers to run with `container-job`
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21.x'
- name: Install dependencies
run: go mod download
- name: Lint
run: go vet ./...
- name: Build
run: go build -v ./...
- name: Test
run: go test ./...