Skip to content

Commit

Permalink
GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ScarlettSpell committed Oct 7, 2022
1 parent c898913 commit 4c5fa67
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 4c5fa67

Please sign in to comment.