Skip to content

Changing this description to be just a Cerberus build check #1

Changing this description to be just a Cerberus build check

Changing this description to be just a Cerberus build check #1

name: Build Cerberus
on: [push]
jobs:
run-build:
runs-on: ubuntu-latest
container:
image: nwdepatie/ner-gcc-arm:latest
timeout-minutes: 10
steps:
- name: Clone Cerberus
uses: actions/checkout@v2
with:
repository: Northeastern-Electric-Racing/Cerberus
submodules: 'true'
- name: Execute Make
run: |
if ! make; then
echo "The application has failed to build."
exit 1 # This will cause the workflow to fail
fi