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 5b2f686 commit f31dd5eCopy full SHA for f31dd5e
.github/workflows/test_precommit.yml
@@ -55,6 +55,17 @@ jobs:
55
run: |
56
source venv/bin/activate
57
pytest tests/python/precommit
58
+ CPP-Code-Quality:
59
+ name: CPP-Code-Quality
60
+ runs-on: ubuntu-latest
61
+ steps:
62
+ - uses: actions/checkout@v3
63
+ - name: cppcheck
64
+ uses: chmorgan/cppcheck-action@main
65
+ with:
66
+ github_token: ${{ secrets.GITHUB_TOKEN}}
67
+ # missingInclude: cppcheck can't find stl, openvino, opencv
68
+ other_options: --suppress=missingInclude -Imodel_api/cpp/models/include -Imodel_api/cpp/utils/include -Imodel_api/cpp/pipelines/include --check-config
69
CPP-Precommit:
70
runs-on: ubuntu-latest
71
steps:
0 commit comments