Don't build AltSoftSerial by default in examples #51
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: Build Examples | |
| # Triggers the workflow on push or pull request events | |
| on: [push, pull_request] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build_examples: | |
| name: Build all examples with PlatformIO and the Arduino CLI | |
| if: ${{ ! contains(github.event.head_commit.message, 'ci skip') }} | |
| uses: EnviroDIY/workflows/.github/workflows/build_examples.yaml@main | |
| with: | |
| boards_to_build: 'all' | |
| examples_to_build: 'examples/readWriteRegister,examples/scanRegisters' | |
| secrets: inherit |