Pr redundant page #266
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: code_style | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
branches: | |
- 'main' | |
jobs: | |
astyle: | |
timeout-minutes: 1 | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: sudo apt-get install -y astyle | |
- run: make astyle | |
cpplint: | |
timeout-minutes: 1 | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: pip3 install cpplint | |
- run: make cpplint | |
crlf: | |
timeout-minutes: 1 | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: sudo apt-get install -y dos2unix | |
- run: make crlf | |
cppcheck: | |
timeout-minutes: 1 | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: sudo apt-get install -y cppcheck | |
- run: make cppcheck | |
pylint: | |
timeout-minutes: 1 | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: pip3 install pylint | |
- run: make pylint |