Skip to content

Commit

Permalink
added build check
Browse files Browse the repository at this point in the history
added build check
  • Loading branch information
dyldonahue authored Oct 31, 2023
1 parent 4aa040c commit c290d77
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Build
on: [push]
jobs:
run-build:
runs-on: ubuntu-latest
container:
image: nwdepatie/ner-gcc-arm:latest
timeout-minutes: 10
steps:
- name: Checkout code
uses: actions/checkout@v3
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

0 comments on commit c290d77

Please sign in to comment.