Skip to content

New Controller

New Controller #18

name: Firmware
on:
push:
branches:
- "main"
tags:
- "*"
paths:
- ".github/**"
pull_request:
paths:
- "Firmware/**"
jobs:
cmake:
runs-on: ubuntu-latest
name: Build With cmake
steps:
- uses: actions/checkout@v4
name: Checkout Repo
with:
fetch-depth: 0
submodules: true
- uses: carlosperate/arm-none-eabi-gcc-action@v1
name: Install the GCC ARM compiler
- run: export PICO_SDK_FETCH_FROM_GIT=true
name: Allow getting PICO sdk from git
- uses: threeal/cmake-action@main
name: Configure and Build Project
with:
source-dir: Firmware
build-dir: Firmware/build