Skip to content
You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
cpu

GitHub Action

PlatformIO Run

0.1.0

PlatformIO Run

cpu

PlatformIO Run

Run PlatformIO project targets over environments declared in platformio.ini

Installation

Copy and paste the following snippet into your .yml file.

              

- name: PlatformIO Run

uses: karniv00l/[email protected]

Learn more about this action in karniv00l/platformio-run-action

Choose a version

PlatformIO Run

GitHub Action for PlatformIO Run.

Usage

.github/workflows/platformio-build.yml

name: PlatformIO

on: pull_request

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v2
      - name: PlatformIO Run
      - uses: karniv00l/[email protected]
        with:
          environments: "teensy35,teensy36,teensy41"
          targets: "teensy35,teensy36,teensy41"
          project-dir: "./some_dir"
          project-conf: "./some_dir/custom.ini"
          jobs: 6
          silent: false
          verbose: true
          disable-auto-clean: false