chore(variant): add generic H563RGT, H563RIT and H573RIT (#2424) #526
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: PlatformIO build | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- .github/** | |
- '!.github/actions/pio-build/**' | |
- '!.github/workflows/PIO-build.yml' | |
- '*.json' | |
- '**.md' | |
- keywords.txt | |
- CI/** | |
- '!CI/build/platformio-builder.py' | |
- cmake/** | |
- tools/** | |
- '!tools/platformio/platformio-build.py' | |
pull_request: | |
paths-ignore: | |
- .github/** | |
- '!.github/actions/pio-build/**' | |
- '!.github/workflows/PIO-build.yml' | |
- '*.json' | |
- '**.md' | |
- keywords.txt | |
- CI/** | |
- '!CI/build/platformio-builder.py' | |
- cmake/** | |
- tools/** | |
- '!tools/platformio/platformio-build.py' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
pio_build: | |
runs-on: ubuntu-latest | |
name: PlatformIO test | |
steps: | |
# First of all, clone the repo using the checkout action. | |
- name: Checkout | |
uses: actions/checkout@main | |
- name: PlatformIO | |
id: Compile | |
uses: ./.github/actions/pio-build |