Skip to content

Bump sphinx from 8.0.2 to 8.1.3 (#964) #4420

Bump sphinx from 8.0.2 to 8.1.3 (#964)

Bump sphinx from 8.0.2 to 8.1.3 (#964) #4420

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