mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-15 04:32:21 +00:00
31 lines
No EOL
569 B
YAML
31 lines
No EOL
569 B
YAML
name: Ubuntu 18.04 TON ccpcheck
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- 'master'
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-18.04
|
|
|
|
steps:
|
|
- name: Check out repository
|
|
uses: actions/checkout@v2
|
|
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 |