platformio-ci/README.md

21 lines
342 B
Markdown
Raw Normal View History

2023-09-20 12:06:46 +03:00
# platformio-ci
Building platformio projects
2023-09-20 08:17:01 +03:00
## Usage
2023-09-13 13:50:57 +03:00
2024-07-29 09:44:31 +03:00
```yml
2023-09-13 13:50:57 +03:00
jobs:
build:
name: Building project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
2023-09-22 22:04:54 +03:00
uses: embedd-actions/platformio-ci@v2
with: # Optional you can change command
2023-09-22 22:05:07 +03:00
command: pio run
2023-09-13 13:50:57 +03:00
```