arm-gcc-ci/README.md

18 lines
310 B
Markdown
Raw Normal View History

2023-09-12 22:53:40 +03:00
## Пример настройки CI/CD
```
jobs:
build:
name: Building project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: make
2023-09-14 10:57:46 +03:00
uses: embedd-actions/arm-gcc-ci@v2
2023-09-12 22:53:40 +03:00
with:
command: make --directory Release all
```