Integrate Fast and Efficient String Formatting Library (#244) #351
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 Examples | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- "src/**" | |
- "examples/**" | |
- ".github/workflows/compile-arduino.yml" | |
pull_request: | |
paths: | |
- "src/**" | |
- "examples/**" | |
- ".github/workflows/compile-arduino.yml" | |
jobs: | |
compile: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
board: | |
- fqbn: arduino:avr:uno | |
artifact-name-suffix: arduino-avr-uno | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Compile sketches | |
uses: arduino/compile-sketches@v1 | |
with: | |
fqbn: ${{ matrix.board.fqbn }} | |
enable-deltas-report: true | |
enable-warnings-report: true | |
sketches-report-path: sketches-reports | |
libraries: | | |
- source-path: ./ | |
- name: Button | |
- name: FreeRTOS | |
- name: SimpleRotary | |
- name: LiquidCrystal I2C | |
- name: SSD1803A_I2C | |
- name: Upload sketches reports | |
uses: actions/upload-artifact@v4 | |
with: | |
name: sketches-report-${{ matrix.board.artifact-name-suffix }} | |
path: sketches-reports |