Keep 'ci/dependabot-updates' up-to-date with 'master' #4593
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Static code analysis | |
on: [push] | |
jobs: | |
static-analysis: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Update submodules | |
run: | | |
git submodule init | |
git submodule update | |
- name: Install dependencies | |
run: | | |
sudo apt-get install cppcheck | |
- name: Show cppcheck version | |
run: | | |
cppcheck --version | |
- name: Run static code analysis | |
run: | | |
# We ignore src/utils/tests/test_tgen.c due to a strange bug in the | |
# version of cppcheck in ubuntu-20.04 | |
cppcheck . --language=c -q --force --error-exitcode=2 --inline-suppr -i src/utils/tests/test_tgen.c |