Skip to content

Update coding_convention.yaml #40

Update coding_convention.yaml

Update coding_convention.yaml #40

name: Coding Convention
on:
push:
branches:
- '**'
env:
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
REPO_LINK: https://github.com/${{ github.repository }}.git
jobs:
job1:
name: Check coding convention
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/[email protected]
with:
ref: update-source-code-lib-iec60730
- name: Check working directory
run: |
pwd
ls -la
- name: Set up environment
run: |
ls -la
cp ./tools/.clang-format .
cp ./tools/.clang-tidy .
cp ./tools/.codespell/.codespellrc .
cp ./tools/.codespell/exclude-file.txt .
cp ./tools/.codespell/ignore-words.txt .
ls -la
pip install pre-commit
sudo apt install uncrustify clang-tidy cppcheck
- name: Run test
run: |
git config diff.renameLimit 999999
git fetch origin
touch CodingConventionResult.log
git diff --name-only origin/gen-firmware-on-host-runner origin/update-source-code-lib-iec60730 | xargs -n 1 pre-commit run --files | xargs | tee CodingConventionResult.txt
- name: Upload Result
if: always()
uses: actions/[email protected]
with:
name: CodingConventionResult.txt
path: CodingConventionResult.txt
warn: Output a warning but do not fail the action
retention-days: 90