Add job for building firmware on Windows

This commit is contained in:
Oleg Kalachev 2023-04-03 12:47:46 +03:00
parent 3c9e87b0b9
commit da4cd661d4

View File

@ -18,6 +18,19 @@ jobs:
- name: Build firmware
run: make
build_windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Install Arduino CLI
run: choco install arduino-cli
- name: Install Make
run: choco install make
- name: Install dependencies
run: make dependencies
- name: Build firmware
run: make
build_simulator:
runs-on: ubuntu-latest
steps: