Fixes for lwIP integration #134
Workflow file for this run
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: Code format | |
| 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: | |
| extensions: ino,c,cpp,h |