Skip to content

Commit

Permalink
CI: Do not fail on cppcheck/clang-analyzer errors
Browse files Browse the repository at this point in the history
The project currently has many warnings on both tools.

Until the project is clean, it makes no sense to fail every pull request
for nothing.
  • Loading branch information
orgads committed Jan 19, 2025
1 parent c1a45fb commit 3db7f9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/clang-analyzer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ jobs:
./autogen.sh
mkdir -p build && cd $_
scan-build ../configure
scan-build --status-bugs make
scan-build make
2 changes: 1 addition & 1 deletion .github/workflows/cppcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ jobs:
libunwind-dev
- name: Run CppCheck
run: |
cppcheck --enable=warning,performance,portability,style --error-exitcode=1 src/
cppcheck --enable=warning,performance,portability,style src/

0 comments on commit 3db7f9d

Please sign in to comment.