We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e47e87c + 5e06e28 commit c60c72aCopy full SHA for c60c72a
.github/workflows/protobuf.yml
@@ -32,6 +32,11 @@ jobs:
32
with:
33
submodules: true
34
35
+ - name: Check Build Setup
36
+ run: |
37
+ ( result=0 ; for f in *.proto ; do grep -wq "$f" CMakeLists.txt || { echo "Missing $f in CMakeLists.txt" && let "result++"; } ; done ; exit $result )
38
+ ( result=0 ; for f in *.proto ; do grep -q '"'$f'"' setup.py || { echo "Missing $f in setup.py" && let "result++"; } ; done ; exit $result )
39
+
40
- name: Setup Python
41
uses: actions/setup-python@v5
42
0 commit comments