We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6de78c5 commit 7c5bcd4Copy full SHA for 7c5bcd4
.github/workflows/main.yml
@@ -0,0 +1,29 @@
1
+#
2
+# Author lea_calot
3
4
+name: FirmwareBuild
5
+
6
+on:
7
+ push:
8
+ branches: [ ]
9
+ tags:
10
+ - 'v*'
11
+ workflow_dispatch:
12
13
+jobs:
14
+ lint_python_samples:
15
+ runs-on: ubuntu-22.04
16
+ steps:
17
+ - name: Install Arm GNU Toolchain (arm-none-eabi-gcc)
18
+ uses: carlosperate/arm-none-eabi-gcc-action@v1
19
+ with:
20
+ release: '11.2-2022.02'
21
+ - name: Check out repository
22
+ uses: actions/checkout@v4
23
24
+ path: NeoDK
25
+ - name: Install arm-none-eabi-gcc
26
+ run: |
27
+ arm-none-eabi-gcc --version
28
+ which arm-none-eabi-gcc
29
0 commit comments