We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1b9c72 commit 807ac1aCopy full SHA for 807ac1a
.github/workflows/protobuf.yml
@@ -17,6 +17,11 @@ jobs:
17
with:
18
submodules: true
19
20
+ - name: Check Build Setup
21
+ run: |
22
+ ( result=0 ; for f in *.proto ; do grep -wq "$f" CMakeLists.txt || { echo "Missing $f in CMakeLists.txt" && let "result++"; } ; done ; exit $result )
23
+ ( result=0 ; for f in *.proto ; do grep -q "'$f'" setup.py || { echo "Missing $f in setup.py" && let "result++"; } ; done ; exit $result )
24
+
25
- name: Setup Python
26
uses: actions/setup-python@v2
27
0 commit comments