Skip to content

chore(deps): bump google.golang.org/grpc from 1.57.0 to 1.58.0 #275

chore(deps): bump google.golang.org/grpc from 1.57.0 to 1.58.0

chore(deps): bump google.golang.org/grpc from 1.57.0 to 1.58.0 #275

Workflow file for this run

name: lint-and-test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint-test-and-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: 1.19
- name: lint
uses: golangci/golangci-lint-action@v3.7.0
with:
github-token: ${{ github.token }}
- name: test
run: go test -v -race ./...
- name: build
run: go build .