Skip to content

bug fix

bug fix #9

Workflow file for this run

name: Build Project
on:
push:
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: "recursive" # Checkout submodules
- name: Install ARM GCC Toolchain
run: |
sudo apt-get update
sudo apt-get install -y gcc-arm-none-eabi make
- name: Build project
run: |
make -j$(nproc) V=1
shell: bash