diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2021-08-09 21:01:08 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-09 21:01:08 -0400 |
commit | 32b3d5dff7b67b45af565da67d3ecce8f0a0912e (patch) | |
tree | 6504dcb1ae9c834fafb70b7a28acc2d1633d502e | |
parent | 1cff637716dcc2e5fff74c7bedb7ae0da0eb5b47 (diff) |
Create GitHub workflow for CI
-rw-r--r-- | .github/workflows/build.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..a7aecdf --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,17 @@ +name: CI + +on: + push: + branches: [ master ] + pull_request: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@master + - name: Install deps + run: sudo apt install gcc-arm-none-eabi binutils-arm-none-eabi + - name: Compile + run: sh build.sh |