Checking building again #4
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: 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 |