Skip to content

Commit

Permalink
adding C/C++ Linter to Ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ruck314 committed Jul 7, 2024
1 parent d9abfa6 commit d4f7a65
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/surf_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@ jobs:
python -m compileall -f python/ scripts/ tests/
flake8 --count python/ scripts/ tests/
- name: C/C++ Linter
run: |
find . -name '*.h' -o -name '*.cpp' -o -name '*.c' | xargs cpplint
- name: VHDL Regression Testing
run: |
./ghdl-build.sh > /dev/null 2>&1
Expand Down
1 change: 1 addition & 0 deletions pip_requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ coverage
#codecov
pytest
pytest-cov
cpplint

0 comments on commit d4f7a65

Please sign in to comment.