From ccf811f9eb3977b869e4a7c3bfd3e14f73039e99 Mon Sep 17 00:00:00 2001 From: rob-g2-365 <153588855+rob-g2-365@users.noreply.github.com> Date: Wed, 28 Feb 2024 06:24:43 +0000 Subject: [PATCH] Testing real Arduino build script. --- .github/workflows/on_push.yml | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/.github/workflows/on_push.yml b/.github/workflows/on_push.yml index c7d0579..de21347 100644 --- a/.github/workflows/on_push.yml +++ b/.github/workflows/on_push.yml @@ -6,8 +6,21 @@ on: [push, check_run] # Jobs run in parallel be default, each runs steps in sequence jobs: - # Jobs to print something out - say-hello: - runs-on: ubuntu-latest - steps: - - run: echo "Hello,GitHub Actions!" \ No newline at end of file + # 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 \ No newline at end of file