Merge pull request #1016 from ton-blockchain/testnet #2
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: TON Static Code Analysis | |
on: [push,workflow_dispatch,workflow_call] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
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 | |
path: output |