Fix parser desync when PUBLISH topic exceeds EMC_MAX_TOPIC_LENGTH (#190) #746
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, pull_request] | |
| jobs: | |
| cppcheck: | |
| if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name | |
| runs-on: ubuntu-latest | |
| container: ghcr.io/bertmelis/pio-test-container | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Cppcheck | |
| run: | | |
| pio check --fail-on-defect=medium --fail-on-defect=high --flags "--inline-suppr --enable=warning --enable=style --enable=performance --suppress=unusedFunction --suppress=preprocessorErrorDirective" --skip-packages |