Skip to content

Remove extra period #123

Remove extra period

Remove extra period #123

Workflow file for this run

name: C++ Static Analysis
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
name: Run cppcheck
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Install cppcheck
run: sudo apt-get install cppcheck -y
- name: Run cppcheck
run: |
cppcheck src --enable=all --inline-suppr --library=windows.cfg --check-level=exhaustive --suppressions-list=CPPCHECK.cfg --error-exitcode=1