From 7ba70dceeacbc9273ee004dfe5eceb8b8fb99cda Mon Sep 17 00:00:00 2001 From: Oleg Kalachev Date: Sun, 9 Apr 2023 16:21:50 +0300 Subject: [PATCH] Add job for building the firmware on macos --- .github/workflows/build.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index db3fb8d..5ce67b3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,6 +18,17 @@ jobs: - name: Build firmware run: make + build_macos: + runs-on: macos-latest + steps: + - uses: actions/checkout@v3 + - name: Install Arduino CLI + run: brew install arduino-cli + - name: Install dependencies + run: make dependencies + - name: Build firmware + run: make + build_windows: runs-on: windows-latest steps: