Skip to content

Commit 391c302

Browse files
author
Martin Klang
committed
Merge branch 'master' into develop
2 parents fcda8e3 + c279ca4 commit 391c302

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

.github/workflows/c-cpp.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: C/C++ CI
2+
3+
on:
4+
push:
5+
branches: [ master, develop ]
6+
pull_request:
7+
branches: [ master, develop ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v2
16+
with:
17+
submodules: true
18+
- name: Setup arm-none-eabi-gcc
19+
uses: fiam/arm-none-eabi-gcc@v1
20+
with:
21+
release: '9-2020-q2' # The arm-none-eabi-gcc release to use.
22+
- name: make
23+
run: make
24+
- name: make check
25+
run: make check

0 commit comments

Comments
 (0)