Skip to content

Added actions/setup-python for build action as suggested by error mes… #6

Added actions/setup-python for build action as suggested by error mes…

Added actions/setup-python for build action as suggested by error mes… #6

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: actions/[email protected]
- uses: arduino/[email protected]
with:
fqbn: arduino:avr:uno
verbose: true
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