Skip to content

Add test sketches for validating CI action #5

Add test sketches for validating CI action

Add test sketches for validating CI action #5

Workflow file for this run

name: Continuous Integration
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
pull_request:
types:
- opened
- reopened
- synchronize
jobs:
compile-sketches:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: 'true'
- name: Install Arduino Tools
run: sudo apt-get install -y arduino arduino-core-avr
# Recursively build all sketches with Makefiles
- name: Compile Sketches
run: |
cd embedded
make all