Skip to content

Checking building again #4

Checking building again

Checking building again #4

Workflow file for this run

name: Build
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
- name: Execute Make
run: |
if ! make; then
echo "The application has failed to build."
exit 1 # This will cause the workflow to fail
fi
- name: List Files
run: |
ls -a