Skip to content

Update coding_convention.yaml #8

Update coding_convention.yaml

Update coding_convention.yaml #8

name: Coding Convention
on:
push:
env:
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
jobs:
job1:
name: Check coding convention
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/[email protected]
- name: Check working directory
run: |
pwd
ls -la
- name: Set up environment
run: |
pip install pre-commit
sudo apt install uncrustify clang-tidy cppcheck
- name: Run test
run: |
git diff --name-only main $BRANCH_NAME | pre-commit run --files > CodingConventionTool.log
- name: Upload Result
uses: actions/[email protected]
with:
name: CodingConventionTool.log
path: .
warn: Output a warning but do not fail the action
retention-days: 90