We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fcda8e3 + c279ca4 commit 391c302Copy full SHA for 391c302
1 file changed
.github/workflows/c-cpp.yml
@@ -0,0 +1,25 @@
1
+name: C/C++ CI
2
+
3
+on:
4
+ push:
5
+ branches: [ master, develop ]
6
+ pull_request:
7
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
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