Skip to content

fix: e2e tests

fix: e2e tests #3152

Workflow file for this run

name: protobuf
on:
pull_request:
jobs:
proto-lint:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- name: proto-lint
run: make proto-lint
proto-gen:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- name: "Check protobuf generated code matches committed code"
# yamllint disable
run: |
set -euo pipefail
make proto-gen
if ! git diff --stat --exit-code ; then
echo ">> ERROR:"
echo ">>"
echo ">> Protobuf generated code requires update (either tools or .proto files may have changed)."
echo ">> Ensure your tools are up-to-date, re-run 'make proto-gen' and update this PR."
echo ">>"
exit 1
fi
# yamllint enable
proto-check-breaking:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: proto-check-breaking
run: make proto-check-breaking