Skip to content

Added update-grpc-changelog-config.json #19

Added update-grpc-changelog-config.json

Added update-grpc-changelog-config.json #19

Workflow file for this run

name: Check generated go files
on: push
jobs:
check:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Install protoc
run: make install-protoc
- name: Check gRPC generated files not manually changed
shell: bash
run: make check-grpc-files
- name: Check sources
run: make run-test
- name: Build sources
run: make build