Cleanup for the server & MQTT examples (#69) #162
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: check code formatting | |
| on: | |
| push: | |
| branches: [master, v1.x] | |
| pull_request: | |
| branches: [master, v1.x] | |
| permissions: {} | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.ref != 'refs/heads/master' }} | |
| jobs: | |
| check: | |
| uses: nRF24/.github/.github/workflows/cpp_lint.yaml@main | |
| permissions: | |
| # needed to detect changed files | |
| contents: read | |
| # needed to post review suggestions on PRs | |
| pull-requests: write | |
| with: | |
| ignore: "utility|clock-arch.c|clock-arch.h|Dns.cpp|Dns.h" | |
| extensions: ino,c,cpp,h |