[action][format] rename format check file name

This commit is contained in:
Meco Man
2024-09-14 11:40:28 +08:00
committed by Rbb666
parent 91f11aa325
commit f17a71c2e4
+28
View File
@@ -0,0 +1,28 @@
name: Check File Format and License
on:
pull_request:
branches:
- master
paths-ignore:
- documentation/**
- '**/README.md'
- '**/README_zh.md'
jobs:
scancode_job:
runs-on: ubuntu-latest
name: Scan code format and license
if: github.repository_owner == 'RT-Thread'
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.8
- name: Check Format and License
shell: bash
run: |
pip install click chardet PyYaml
python tools/ci/file_check.py check 'https://github.com/RT-Thread/rt-thread' 'master'