mirror of
https://github.com/embedd-actions/platformio-ci.git
synced 2024-12-26 00:42:16 +03:00
17 lines
252 B
Markdown
17 lines
252 B
Markdown
|
## Пример настройки CI/CD
|
||
|
|
||
|
```
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
name: Building project
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
|
||
|
- name: Build
|
||
|
uses: embedd-actions/platformio-ci@v1
|
||
|
|
||
|
|
||
|
```
|