Skip to content

add CMakeLists.txt and rewrite unit tests with add_subdirectory #288

add CMakeLists.txt and rewrite unit tests with add_subdirectory

add CMakeLists.txt and rewrite unit tests with add_subdirectory #288

Workflow file for this run

name: code_style
on: push
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