fix compilation warning #37
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: compile-sketches | |
on: | |
- push | |
- pull_request | |
jobs: | |
compile-sketch: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install ESP32 platform dependencies | |
run: pip3 install pyserial | |
- name: Compile sketch | |
uses: arduino/compile-sketches@v1 | |
with: | |
cli-compile-flags: | | |
- --warnings | |
- none | |
fqbn: "esp32:esp32:esp32" | |
platforms: | | |
- name: esp32:esp32 | |
source-url: https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json | |
libraries: | | |
- name: StreamDebugger | |
- source-path: ./ | |
sketch-paths: | | |
- examples |