Skip to content

Commit dd3e7f4

Browse files
committed
ci: add build workflow
Simple build workflow which builds partition files for all platforms. Signed-off-by: Nicolas Dechesne <[email protected]>
1 parent 4db724e commit dd3e7f4

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:
4+
pull_request:
5+
push:
6+
branches:
7+
- main
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
with:
15+
fetch-depth: 0
16+
17+
- name: Run make
18+
run: |
19+
make
20+

0 commit comments

Comments
 (0)