Files
arduino_pong/.github/workflows/ci.yml
andrea cd9d4289ef
Some checks failed
Arduino Pong CI / build (macos-latest) (push) Has been cancelled
Arduino Pong CI / build (ubuntu-latest) (push) Has been cancelled
Arduino Pong CI / build (windows-latest) (push) Has been cancelled
update actions/checkout version to use node24 and fix CI warnings
2026-03-15 12:09:05 +01:00

34 lines
681 B
YAML

name: Arduino Pong CI
on:
push:
branches: [ master ]
paths:
- 'arduino_pong.ini'
- 'Makefile'
- '.github/workflows/ci.yml'
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Code
uses: actions/checkout@v6
- 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)
shell: bash
run: make compile