Skip to content

Commit 7527de5

Browse files
committed
github actions: initial
Add a workflow to build the firmware. Signed-off-by: Heiko Thiery <[email protected]>
1 parent 93f0dd9 commit 7527de5

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/build.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: build
2+
3+
on: [push, pull_request]
4+
5+
defaults:
6+
run:
7+
shell: bash
8+
9+
jobs:
10+
build:
11+
name: Compile the firmware
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: Checkout Repository
16+
uses: actions/checkout@v4
17+
- name: Install Dependencies
18+
run: sudo apt-get -y install gcc-arm-none-eabi
19+
- name: Compile
20+
run: make

0 commit comments

Comments
 (0)