Skip to content

build(deps): Bump google.golang.org/grpc from 1.76.0 to 1.79.3 #11

build(deps): Bump google.golang.org/grpc from 1.76.0 to 1.79.3

build(deps): Bump google.golang.org/grpc from 1.76.0 to 1.79.3 #11

Workflow file for this run

name: CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: false
- name: gofmt
run: |
if [ -n "$(gofmt -l .)" ]; then
echo "Run gofmt -w ."
gofmt -l .
exit 1
fi
- name: go vet
run: go vet ./...
- name: go test
run: go test ./...
- name: go test -race
run: go test -race ./...
- name: golangci-lint
run: |
go install github.com/golangci/golangci-lint/v2/cmd/golangci-lint@v2.10.1
golangci-lint run ./...
- name: coverage-gate
run: make coverage-gate