fix:[dfs]ls在文件名太长时打印出来的文件名与大小连接在一起,无法区分 #3082
Workflow file for this run
This file contains hidden or 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: Check File Format and License | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| paths-ignore: | |
| - documentation/** | |
| - '**/README.md' | |
| - '**/README_zh.md' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| scancode_job: | |
| runs-on: ubuntu-22.04 | |
| name: Scan code format and license | |
| if: github.repository_owner == 'RT-Thread' | |
| steps: | |
| - uses: actions/checkout@main | |
| - name: Set up Python | |
| uses: actions/setup-python@main | |
| 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' |