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 243c5a7 commit 924a147Copy full SHA for 924a147
.ci/ci
@@ -6,10 +6,14 @@ set -e
6
# Deny warnings in rust. CI will fail to compile any code with warnings in it.
7
export RUSTFLAGS="-Dwarnings"
8
9
-# Check style
10
-
+# Check style for C
11
./.ci/check-style
+
12
+# Check that we can generate protobuf definitions for python
13
+make -C py clean
14
make -C py
15
16
+# Check style for python
17
./.ci/check-pep8
18
19
# check ./releases sigs
py/Makefile
@@ -2,5 +2,6 @@ all:
2
${MAKE} -C bitbox02
3
4
clean:
5
+ ${MAKE} -C bitbox02 clean
find -name *.pyc -delete
find -name __pycache__ -empty -delete
0 commit comments