platformio-ci/README.md
2023-09-22 22:05:07 +03:00

21 lines
339 B
Markdown

# platformio-ci
Building platformio projects
## Usage
```
jobs:
build:
name: Building project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
uses: embedd-actions/platformio-ci@v2
with: # Optional you can change command
command: pio run
```