init commit

This commit is contained in:
2023-09-12 22:53:40 +03:00
commit 6b8df2f7b4
3 changed files with 42 additions and 0 deletions

17
README.md Normal file
View File

@@ -0,0 +1,17 @@
## Пример настройки CI/CD
```
jobs:
build:
name: Building project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: make
uses: embedd-actions/arm-gcc-ci@v1
with:
command: make --directory Release all
```