Merge pull request #562 from danielinux/update-flash-elf #1082
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 static analysis | |
| on: | |
| push: | |
| branches: [ 'master', 'main', 'release/**' ] | |
| pull_request: | |
| branches: [ '*' ] | |
| jobs: | |
| cppcheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| with: | |
| submodules: false | |
| - name: install cppcheck | |
| run: sudo apt-get install --no-install-recommends -y -q cppcheck | |
| - name: Run cppcheck static analysis | |
| run: | | |
| make cppcheck |