Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci(cppcheck-all): rename to cppcheck-daily and make it run only daily #7312

Merged
merged 6 commits into from
Jun 6, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: cppcheck-all
name: cppcheck-monitor

xmfcx marked this conversation as resolved.
Show resolved Hide resolved
on:
pull_request:
Expand All @@ -7,7 +7,7 @@ on:
workflow_dispatch:

jobs:
cppcheck-all:
cppcheck-monitor:
runs-on: ubuntu-latest
xmfcx marked this conversation as resolved.
Show resolved Hide resolved

steps:
Expand All @@ -34,7 +34,6 @@ jobs:

- name: Run Cppcheck on all files
continue-on-error: true
id: cppcheck
run: |
cppcheck --enable=all --inconclusive --check-level=exhaustive --error-exitcode=1 --xml . 2> cppcheck-report.xml
shell: bash
Expand All @@ -54,7 +53,3 @@ jobs:
with:
name: cppcheck-report
path: cppcheck-report.xml

xmfcx marked this conversation as resolved.
Show resolved Hide resolved
- name: Fail the job if Cppcheck failed
if: steps.cppcheck.outcome == 'failure'
run: exit 1
Loading