Added update-grpc-changelog-config.json #19
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |