mirror of
https://github.com/pret/agbcc.git
synced 2026-04-23 02:17:31 -05:00
18 lines
323 B
YAML
18 lines
323 B
YAML
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
|