Skip to content

Update platformio_ci.yml #45

Update platformio_ci.yml

Update platformio_ci.yml #45

Workflow file for this run

name: PlatformIOCI
on:
workflow_dispatch: # This keeps the option to trigger manually
inputs:
PLATFORMIO_PROJECT_DIR:
description: 'Specify the PlatformIO project directory'
required: true
default: 'mcu_main_sustainer'
jobs:
build:

Check failure on line 11 in .github/workflows/platformio_ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/platformio_ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 11
runs-on: ubuntu-latest
steps:
permissions:
contents: write
actions: write
checks: write
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
- name: Install PlatformIO
run: |
python -m pip install --upgrade pip
pip install --upgrade platformio
- name: Run PlatformIO
run: |
cd MIDAS
pio platform install teensy
pio run -e ${{ github.event.inputs.PLATFORMIO_PROJECT_DIR }} || true
- name: Artifacts
uses: actions/upload-artifact@v4
with:
name: firmware-files
path: .