From 4c5fa67589ea0202038d021cf8d8069cb5012392 Mon Sep 17 00:00:00 2001 From: Julie Mason Date: Fri, 7 Oct 2022 19:07:03 +0000 Subject: [PATCH] GitHub actions --- .github/workflows/build.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..75778ddd --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,17 @@ +name: Build +on: [pull_request, push] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v2 + - name: Install toolchain + uses: numworks/setup-arm-toolchain@2020-q2 + - name: Install nwlink + run: npm install -g nwlink + - name: Run make build + run: make build + - name: Run make check + run: make check