Skip to content

Pr redundant page

Pr redundant page #269

Workflow file for this run

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