New Controller #26
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Firmware | |
on: | |
push: | |
branches: | |
- "main" | |
tags: | |
- "*" | |
paths: | |
- ".github/**" | |
pull_request: | |
paths: | |
- "Firmware/**" | |
env: | |
PICO_SDK_FETCH_FROM_GIT: true | |
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 | |
- uses: threeal/cmake-action@main | |
name: Configure and Build Project | |
with: | |
source-dir: Firmware | |
build-dir: Firmware/build |