ci: add a simple smoke test #159
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: code_style | |
| on: [push] | |
| jobs: | |
| cpplint: | |
| if: false # disable temporarily | |
| runs-on: ubuntu-24.04 | |
| timeout-minutes: 1 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - run: | | |
| pip3 install cpplint | |
| sudo apt-get install -y cppcheck dos2unix | |
| - run: make code_style |