Skip to content

Commit

Permalink
Merge branch 'main' into make-shep-build
Browse files Browse the repository at this point in the history
  • Loading branch information
nwdepatie committed Nov 10, 2023
2 parents a8c5a76 + c290d77 commit c705b34
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 c705b34

Please sign in to comment.