Feat/ir #217
Workflow file for this run
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: Static analysis | |
on: | |
pull_request: | |
jobs: | |
static_analysis: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.9' | |
- run: | | |
sudo apt install -yq cppcheck | |
pip install lizard | |
- name: Create lizard report | |
id: lizard | |
shell: bash | |
run: | | |
content=$(python .github/launch-lizard.py $(echo $(git diff --name-only -r HEAD^1 HEAD))) | |
echo "LIZARD_REPORT<<EOF" >> $GITHUB_ENV | |
echo "$content" >> $GITHUB_ENV | |
echo "EOF" >> $GITHUB_ENV | |
- name: Run cppcheck | |
id: cppcheck | |
shell: bash | |
run: | | |
cppcheck --platform=unix64 --template="{file}:{line}: {severity}: {message}" \ | |
--output-file=cppcheck.txt \ | |
-I include src \ | |
--enable=all --inline-suppr \ | |
--suppressions-list=cppcheck-suppressions.txt | |
content=$(python .github/generate_cppcheck_report.py $(echo $(git diff --name-only -r HEAD^1 HEAD))) | |
echo "CPPCHECK_REPORT<<EOF" >> $GITHUB_ENV | |
echo "$content" >> $GITHUB_ENV | |
echo "EOF" >> $GITHUB_ENV | |
- name: Find Comment | |
uses: peter-evans/find-comment@v3 | |
id: fc | |
with: | |
issue-number: ${{ github.event.pull_request.number }} | |
comment-author: 'github-actions[bot]' | |
body-includes: Static analysis report | |
- name: Create or update comment | |
uses: peter-evans/create-or-update-comment@v4 | |
with: | |
comment-id: ${{ steps.fc.outputs.comment-id }} | |
issue-number: ${{ github.event.pull_request.number }} | |
body: | | |
## Static analysis report | |
${{ env.LIZARD_REPORT }} | |
--- | |
${{ env.CPPCHECK_REPORT }} | |
edit-mode: replace |