Update coding_convention.yaml #1
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: Coding Convention | |
on: | |
push: | |
env: | |
SECURITY: APP_SECURE=false | |
COMMAND: all | |
COMPONENT: all | |
jobs: | |
job1: | |
name: Check coding convention | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Check working directory | |
run: | | |
pwd | |
ls -la | |
- name: Set up environment | |
run: | | |
pip install pre-commit | |
sudo apt install uncrustify clang-tidy cppcheck | |