Update README.md #515
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: cppcheck-action-test | |
on: | |
push: | |
branches: [main] | |
jobs: | |
# From: https://github.com/marketplace/actions/cppcheck-action | |
build: | |
name: cppcheck-test | |
runs-on: ubuntu-latest | |
steps: | |
# From: https://stackoverflow.com/a/76512688 | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Git User | |
run: | | |
git config user.name "GitHub Action" | |
git config user.email "<EMAIL>" | |
- name: Update cpp_check Branch | |
run: | | |
git fetch origin | |
git checkout cpp_check | |
git reset --hard origin/main | |
git push -f origin cpp_check | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
ref: cpp_check | |
- name: cppcheck | |
uses: deep5050/cppcheck-action@main | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN}} | |
- name: publish report | |
uses: mikeal/publish-to-github-action@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
BRANCH_NAME: 'cpp_check' |