fix from/to be #349
Workflow file for this run
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 Cerberus | |
on: [push] | |
jobs: | |
run-build: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/northeastern-electric-racing/embedded-base:docker-compose | |
timeout-minutes: 10 | |
steps: | |
- name: Clone Cerberus | |
uses: actions/checkout@v3 | |
with: | |
repository: Northeastern-Electric-Racing/Cerberus | |
- name: Clone Embedded-base | |
uses: actions/checkout@v3 | |
with: | |
path: "./Drivers/Embedded-Base" | |
- name: Execute Make | |
run: | | |
if ! make; then | |
echo "The application has failed to build." | |
exit 1 # This will cause the workflow to fail | |
fi |