Skip to content

Testing real Arduino build script. #3

Testing real Arduino build script.

Testing real Arduino build script. #3

Workflow file for this run

# Name of your workflow
name: Aruduino Build on push workflow
# Define the trigger events.
on: [push, check_run]
# Jobs run in parallel be default, each runs steps in sequence
jobs:
# Build the ATMEGA-320P
compile-sketch:
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- uses: arduino/compile-sketches@v1
with:
fqbn: arduino:avr:uno
sketch-paths: arduino/epaper_display
libraries: |
- name: SD
version: 1.2.4
- name: LowPower_LowPowerLab
version: 2.2
- name: SPI
version: 1.0
- name: EEPROM
version: 2.0