Skip to content

Commit

Permalink
REMIND/ 5050
Browse files Browse the repository at this point in the history
  • Loading branch information
spalmer25 committed Feb 29, 2024
1 parent a888ba6 commit 70285a2
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/cppcheck.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: cppcheck-action-test
on: [pull_request]
on: [push]

jobs:
build:
Expand All @@ -9,6 +9,18 @@ jobs:
- uses: actions/checkout@v2

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

- name: Print current branch
run: echo "Current branch is ${{ github.ref }}"

- name: Print current branch
run: echo "Current branch is ${GITHUB_REF#refs/heads/}"

- name: publish report
uses: mikeal/publish-to-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH_NAME: ${GITHUB_REF#refs/heads/}

0 comments on commit 70285a2

Please sign in to comment.