2022-10-28 14:31:38 +00:00
|
|
|
name: TON ccpcheck
|
2022-06-03 13:01:55 +00:00
|
|
|
|
2022-11-03 09:41:49 +00:00
|
|
|
on: [push,workflow_dispatch,workflow_call]
|
2022-06-03 13:01:55 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: ubuntu-18.04
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Check out repository
|
2022-11-03 09:41:49 +00:00
|
|
|
uses: actions/checkout@v3
|
2022-06-03 13:01:55 +00:00
|
|
|
with:
|
|
|
|
submodules: 'recursive'
|
|
|
|
|
|
|
|
- name: Run Cppcheck
|
|
|
|
uses: Bedzior/run-cppcheck@master
|
|
|
|
with:
|
|
|
|
enabled checks: all
|
|
|
|
enable inconclusive: true
|
|
|
|
generate report: true
|
|
|
|
|
|
|
|
- name: Upload report
|
|
|
|
uses: actions/upload-artifact@v1
|
|
|
|
with:
|
|
|
|
name: ton-ccpcheck-report
|
2022-07-05 16:52:12 +00:00
|
|
|
path: output
|