Merge pull request #9 from danielinux/icmp_sockets #112
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 code linter | |
| on: | |
| push: | |
| branches: [ 'master', 'main', 'release/**' ] | |
| pull_request: | |
| branches: [ '*' ] | |
| jobs: | |
| linter: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: true | |
| - name: Update repo | |
| run: | | |
| sudo apt-get update | |
| sudo apt install -y cppcheck | |
| - name: Run cppcheck | |
| run: | | |
| make cppcheck |