Fixing path variable to use as subdirectory #11
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
# | |
# static-analysis.yml | |
# | |
# Copyright The RSCLib Contributors. | |
# | |
# This file is part of RSCLib. | |
# | |
# RSCLib is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU Lesser General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# RSCLib is distributed in the hope that it will be useful, | |
# but WITHOUT ANY WARRANTY; without even the implied warranty of | |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
# GNU Lesser General Public License for more details. | |
# | |
# You should have received a copy of the GNU Lesser General Public License | |
# along with RSCLib. If not, see <http://www.gnu.org/licenses/>. | |
# | |
# | |
name: Static Analysis | |
on: | |
push: | |
branches: [dev] | |
pull_request: | |
branches: [main, dev] | |
# 'workflow_dispatch' allows manual execution of this workflow under the repository's 'Actions' tab | |
workflow_dispatch: | |
jobs: | |
cppcheck-analysis: | |
name: cppcheck-analysis | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install CppCheck | |
run: sudo apt install -y cppcheck | |
- name: Execute CppCheck on header files | |
run: cppcheck --std=c99 --error-exitcode=-1 --addon=misra.py $PWD/include/rsc/* | |
- name: Execute CppCheck on source files | |
run: cppcheck --std=c99 --error-exitcode=-1 --addon=misra.py -I$PWD/include/ $PWD/src/* |