190 data collection task, remove unnecessary queues, optimize RTOS pr… #620
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 | |
on: [push] | |
jobs: | |
run-build: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/northeastern-electric-racing/embedded-base:main | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Execute Make | |
run: | | |
if ! make; then | |
echo "The application has failed to build." | |
exit 1 # This will cause the workflow to fail | |
fi |