Skip to content

Commit

Permalink
Testing real Arduino build script.
Browse files Browse the repository at this point in the history
  • Loading branch information
rob-g2-365 committed Feb 28, 2024
1 parent 8f6ecff commit ccf811f
Showing 1 changed file with 18 additions and 5 deletions.
23 changes: 18 additions & 5 deletions .github/workflows/on_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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!"
# 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

0 comments on commit ccf811f

Please sign in to comment.