update triggers #1
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: Build Project | |
on: | |
push: # Triggers on every push to the repository | |
pull_request: | |
jobs: | |
build: | |
name: Build | |
runs-on: macos-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
submodules: "recursive" # Ensure submodules are checked out | |
- name: Install dependencies | |
run: | | |
brew update | |
brew install arm-none-eabi-gcc make | |
- name: Build project | |
run: | | |
make -j V=1 | |
shell: bash |