-
Notifications
You must be signed in to change notification settings - Fork 267
65 lines (55 loc) · 1.84 KB
/
check-generated.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Verify that generated code is up-to-date.
#
# Note that we run these checks regardless whether the input files have
# changed, because generated code can change in response to toolchain updates
# even if no files in the repository are modified.
name: Check generated code
on:
pull_request:
branches:
- v0.34.x-celestia
permissions:
contents: read
jobs:
# Mocks have been disabled. See https://github.com/celestiaorg/celestia-core/pull/917
# check-mocks:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/setup-go@v3
# with:
# go-version: "1.22.2"
# - uses: actions/checkout@v3
# - name: "Check generated mocks"
# run: |
# set -euo pipefail
# make mockery
# if ! git diff --stat --exit-code ; then
# echo ">> ERROR:"
# echo ">>"
# echo ">> Generated mocks require update (either Mockery or source files may have changed)."
# echo ">> Ensure your tools are up-to-date, re-run 'make mockery' and update this PR."
# echo ">>"
# exit 1
# fi
check-proto:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v4
with:
go-version: "1.22.2"
- uses: actions/checkout@v4
with:
fetch-depth: 1 # we need a .git directory to run git diff
- name: "Check protobuf generated code"
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 ">>"
git diff
exit 1
fi