We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec82b7c commit b447ef9Copy full SHA for b447ef9
.github/workflows/protobuf.yml
@@ -22,6 +22,11 @@ jobs:
22
with:
23
submodules: true
24
25
+ - name: Check Build Setup
26
+ run: |
27
+ ( result=0 ; for f in *.proto ; do grep -wq "$f" CMakeLists.txt || { echo "Missing $f in CMakeLists.txt" && let "result++"; } ; done ; exit $result )
28
+ ( result=0 ; for f in *.proto ; do grep -q '"'$f'"' setup.py || { echo "Missing $f in setup.py" && let "result++"; } ; done ; exit $result )
29
+
30
- name: Setup Python
31
uses: actions/setup-python@v5
32
0 commit comments