Create GitHub workflow for CI

This commit is contained in:
PikalaxALT 2021-08-09 21:01:08 -04:00 committed by GitHub
parent 1cff637716
commit 32b3d5dff7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

17
.github/workflows/build.yml vendored Normal file
View File

@ -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