On ESP32, change to use GPIO pin 21 for RX and pin 16 for TX #41
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: Run the Arduino Linter | |
| # The workflow will run on every push and pull request to the repository | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # This step makes the contents of the repository available to the workflow. | |
| - uses: actions/checkout@v4 | |
| - uses: arduino/arduino-lint-action@v2 | |
| with: | |
| library-manager: update | |
| compliance: strict |