mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-12 19:22:37 +00:00
* fixing compilation warning: ld: warning: ignoring duplicate libraries: '../crypto/libton_block.a', '../crypto/libton_crypto.a' * update upload-artifact version in TON Static Code Analysis GH action * remove even more redundant linking dependencies * remove even more redundant linking dependencies 2
26 lines
551 B
YAML
26 lines
551 B
YAML
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@master
|
|
with:
|
|
name: ton-ccpcheck-report
|
|
path: output
|