Skip to content

chore(deps): update google.golang.org/genproto/googleapis/rpc digest to 0a764e5 #301

chore(deps): update google.golang.org/genproto/googleapis/rpc digest to 0a764e5

chore(deps): update google.golang.org/genproto/googleapis/rpc digest to 0a764e5 #301

Workflow file for this run

name: Build Lint and Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
permissions:
contents: read
pull-requests: read
checks: write
jobs:
build-lint-test:
name: Build Lint and Test
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Set up gotestfmt
uses: GoTestTools/gotestfmt-action@v2
with:
repo: gotestfmt
version: v2.5.0
- name: Build
run: make build
- name: Unit Tests
env:
RUN_MEMORY_LEAK_TEST: true
run: make test
- name: Linting
run: make check