Skip to content

Commit 2867974

Browse files
fix: suppress cppcheck missing system includes
1 parent 2c51ba3 commit 2867974

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/pipeline.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
- uses: actions/checkout@v4
1313

1414
- name: SAST Scan
15-
run: |
16-
sudo apt-get update
17-
sudo apt-get install -y cppcheck
18-
cppcheck --error-exitcode=1 --enable=all .
15+
run: |
16+
sudo apt-get update
17+
sudo apt-get install -y cppcheck
18+
cppcheck --error-exitcode=1 --enable=all --suppress=missingIncludeSystem .
1919
2020
- name: Build Container
2121
run: docker build -t trading-engine:${{ github.sha }} .

0 commit comments

Comments
 (0)