Skip to content

Commit

Permalink
[ci] Add cppcheck github action
Browse files Browse the repository at this point in the history
Signed-off-by: czm <[email protected]>
  • Loading branch information
czm23333 committed Sep 2, 2023
1 parent 6f5c85b commit 9a8b023
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/cppcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: cppcheck-action
on: [push]

jobs:
build:
name: cppcheck-test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: cppcheck
uses: deep5050/cppcheck-action@main


- name: publish report
uses: actions/upload-artifact@v3
with:
name: cppcheck
path: cppcheck_report.txt

0 comments on commit 9a8b023

Please sign in to comment.