[add] .c/.h file format check and license check

This commit is contained in:
thread-liu
2021-04-01 11:56:01 +08:00
parent 08a4de57e2
commit eedf97fa66
2 changed files with 248 additions and 0 deletions

20
.github/workflows/file_check.yml vendored Normal file
View File

@@ -0,0 +1,20 @@
name: Check File Format and License
on: [pull_request]
jobs:
scancode_job:
runs-on: ubuntu-latest
name: Scan code format and license
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@master
with:
python-version: 3.8
- name: Check Format and License
shell: bash
run: |
pip install click chardet
python tools/file_check.py check 'https://github.com/RT-Thread/rt-thread' 'master'