We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9abfa6 commit d4f7a65Copy full SHA for d4f7a65
.github/workflows/surf_ci.yml
@@ -49,6 +49,10 @@ jobs:
49
python -m compileall -f python/ scripts/ tests/
50
flake8 --count python/ scripts/ tests/
51
52
+ - name: C/C++ Linter
53
+ run: |
54
+ find . -name '*.h' -o -name '*.cpp' -o -name '*.c' | xargs cpplint
55
+
56
- name: VHDL Regression Testing
57
run: |
58
./ghdl-build.sh > /dev/null 2>&1
pip_requirements.txt
@@ -6,3 +6,4 @@ coverage
6
#codecov
7
pytest
8
pytest-cov
9
+cpplint
0 commit comments