From 69386ba4da510dbca5e7238abb8e96f7d7cb9ff9 Mon Sep 17 00:00:00 2001 From: andrea Date: Sun, 15 Mar 2026 11:54:10 +0100 Subject: [PATCH] added CI build test also for mac and windows --- .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ba4e739..2f92ec0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,7 +6,11 @@ on: jobs: build: - runs-on: ubuntu-latest + strategy: + matrix: + os: [ubuntu-latest, macos-latest, windows-latest] + + runs-on: ${{ matrix.os }} steps: - name: Checkout Code @@ -21,4 +25,5 @@ jobs: arduino-cli core install arduino:renesas_uno - name: Compile Sketch (via Makefile) + shell: bash run: make compile