Bump super-linter/super-linter from 7.2.0 to 7.2.1 #132
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: Compile Examples | |
on: | |
- push | |
- pull_request | |
permissions: {} | |
jobs: | |
compile-sketch-mcp2515: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Compile MCP2515 example | |
uses: arduino/compile-sketches@main | |
with: | |
libraries: | | |
- name: autowp-mcp2515 | |
- source-path: ./ | |
sketch-paths: | | |
- examples/EMUcan_MCP2515/EMUcan_MCP2515.ino | |
- examples/EMUcan_MCP2515_send/EMUcan_MCP2515_send.ino | |
- examples/EMUcan_Simulator/EMUcan_Simulator.ino | |
compile-sketch-esp32: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Compile ESP32 example | |
uses: arduino/compile-sketches@main | |
with: | |
fqbn: esp32:esp32:esp32 | |
platforms: | | |
- name: esp32:esp32 | |
source-url: https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json | |
libraries: | | |
- source-path: ./ | |
sketch-paths: | | |
- examples/EMUcan_ESP32/EMUcan_ESP32.ino | |
compile-sketch-teensy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Compile Teensy example | |
uses: arduino/compile-sketches@main | |
with: | |
platforms: | | |
- name: "teensy:avr" | |
source-url: https://www.pjrc.com/teensy/td_156/package_teensy_index.json | |
fqbn: "teensy:avr:teensy40" | |
libraries: | | |
- source-path: ./ | |
sketch-paths: | | |
- examples/EMUcan_Teensy/EMUcan_Teensy.ino | |
compile-sketch-stm32: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Compile STM32 example | |
uses: arduino/compile-sketches@main | |
with: | |
platforms: | | |
- name: "STMicroelectronics:stm32" | |
source-url: https://github.com/stm32duino/BoardManagerFiles/raw/main/package_stmicroelectronics_index.json | |
fqbn: "STMicroelectronics:stm32:Nucleo_144" # DSTM32F103x6 | |
libraries: | | |
- source-path: ./ | |
- name: STM32_CAN | |
sketch-paths: | | |
- examples/EMUcan_STM32/EMUcan_STM32.ino | |
compile-sketch-unor4: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Compile UNO R4 example | |
uses: arduino/compile-sketches@main | |
with: | |
fqbn: "arduino:renesas_uno:unor4wifi" | |
libraries: | | |
- source-path: ./ | |
sketch-paths: | | |
- examples/EMucan_UnoR4/EMucan_UnoR4.ino |