Skip to content

Commit

Permalink
workflow: cat cppcheck report
Browse files Browse the repository at this point in the history
Signed-off-by: Maryam Tahhan <[email protected]>
  • Loading branch information
maryamtahhan committed Jul 26, 2024
1 parent 2a6dd2e commit 768e664
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/cppcheck.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: cppcheck-action-test
on: [push] # yamllint disable-line rule:truthy

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

- name: cppcheck
uses: deep5050/cppcheck-action@main
with:
github_token: ${{ secrets.GITHUB_TOKEN}}

- name: cat report
run: |
cat cppcheck_report.txt

0 comments on commit 768e664

Please sign in to comment.