control first and last bytes size, optionally disable it (#208) #235
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: cppcheck | |
| "on": | |
| push: | |
| branches: | |
| - main | |
| - devel | |
| pull_request: | |
| jobs: | |
| build: | |
| name: Runs cppcheck | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: checkout | |
| uses: actions/checkout@v4 | |
| - name: install packages | |
| run: sudo apt install cppcheck | |
| - name: run cppcheck | |
| run: cppcheck/run_cppcheck.sh | |
| - name: store the cppcheck output as an artifact | |
| if: ${{ always() }} | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| path: 'cppcheck/out/*' |