-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (38 loc) · 1.13 KB
/
check_and_build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Quality check
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
clang_format_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: RafikFarhad/clang-format-github-action@v4
with:
sources: "esp32-different-i2c-buses-example/*.ino"
style: file
build_sketch:
runs-on: ubuntu-latest
env:
CLI_PATH: ./cli
steps:
- name: checkout
uses: actions/checkout@v4
- name: install arduino-cli
run: |
mkdir -p $CLI_PATH
export PATH=$PATH:$CLI_PATH
curl -fsSL https://raw.githubusercontent.com/arduino/arduino-cli/master/install.sh | BINDIR=$CLI_PATH sh
- name: build arduino r4 sketch
run: |
${CLI_PATH}/arduino-cli compile --profile arduino-uno-r4 ./exampleArduinoUnoR4
- name: build ESP32 DevKit sketch
run: |
${CLI_PATH}/arduino-cli compile --profile esp32-devkitC-v4 ./exampleESP32DevKitCV4
- name: build Nucleo sketch
run: |
${CLI_PATH}/arduino-cli compile --profile stm32-nucleo64 ./exampleSTM32Nucleo64