Skip to content

Version bump to 1.7.2 #75

Version bump to 1.7.2

Version bump to 1.7.2 #75

Workflow file for this run

name: Cppcheck Code Analysis
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:
jobs:
cppcheck:
name: Run Cppcheck
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Cppcheck
run: sudo apt-get install cppcheck
- name: Run Cppcheck
run: |
cppcheck ./src --enable=all --inconclusive --xml 2> cppcheck-report.xml
- name: Upload Cppcheck results
if: always()
uses: actions/upload-artifact@v4
with:
name: cppcheck-report
path: cppcheck-report.xml
- name: Display Cppcheck results
if: always()
run: cat cppcheck-report.xml