example for esp32, nucleo 64 and arduino uno r4 #5
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: Install ESP32 platform dependencies | |
run: pip3 install pyserial | |
- name: build sketch | |
run: | | |
${CLI_PATH}/arduino-cli compile --profile espressif-esp32 ./esp32-different-i2c-buses-example |