- 3.2.5 beta1: #52
Workflow file for this run
This file contains 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: Test build | |
on: [push, pull_request] | |
jobs: | |
nodemcuv2_ota: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Add config file | |
working-directory: ./rancilio-pid | |
run: cp userConfig.h.SAMPLE userConfig.h | |
- name: PlatformIO Run nodemcuv2_ota | |
uses: karniv00l/platformio-run-action@v1 | |
with: | |
environments: "nodemcuv2_ota" | |
silent: false | |
verbose: true | |
esp32_ota_LIVE: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Add config file | |
working-directory: ./rancilio-pid | |
run: cp userConfig.h.SAMPLE userConfig.h | |
- name: PlatformIO Run esp32_ota_LIVE | |
uses: karniv00l/platformio-run-action@v1 | |
with: | |
environments: "esp32_ota_LIVE" | |
silent: false | |
verbose: true | |