Skip to content

reduce warnings

reduce warnings #200

Workflow file for this run

on:
push:
branches:
- master
- develop
name: Cpp-lint-check
jobs:
cpplint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v2
- run: pip install cpplint
- run: cpplint --quiet src/secsse_sim2.h src/secsse_sim.cpp
cppcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: sudo apt-get install cppcheck
- run: cppcheck -i src/RcppExports.cpp --quiet --enable=warning --error-exitcode=1 .