mirror of
https://github.com/pret/agbcc.git
synced 2026-04-26 00:01:29 -05:00
Create GitHub workflow for CI
This commit is contained in:
parent
1cff637716
commit
32b3d5dff7
17
.github/workflows/build.yml
vendored
Normal file
17
.github/workflows/build.yml
vendored
Normal 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
|
||||||
Loading…
Reference in New Issue
Block a user