Files
arduino_pong/.github/workflows/ci.yml
andrea 280e681ba6
Some checks failed
Arduino Pong CI / build (push) Has been cancelled
ci: add github actions workflow for automatic compilation
2026-03-15 11:37:03 +01:00

25 lines
479 B
YAML

name: Arduino Pong CI
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Arduino CLI
uses: arduino/setup-arduino-cli@v1
- name: Install UNO R4 Core
run: |
arduino-cli core update-index
arduino-cli core install arduino:renesas_uno
- name: Compile Sketch (via Makefile)
run: make compile