chore: waits for a specific height instead of sleeping in the test for the emptiness of the first block #1241
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
# protobuf runs `make proto-lint` and `make proto-gen`. | |
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 | |
# add this back when we start using versioning | |
# breakage: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v4 | |
# - name: check-breakage | |
# run: make proto-check-breaking |