Skip to content

Add CI build status badges #4

Add CI build status badges

Add CI build status badges #4

Workflow file for this run

name: CI arm
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install dependencies
run: |
sudo apt-get install -y gcc-arm-linux-gnueabihf
- name: build
run: |
make CROSS_COMPILE=arm-linux-gnueabihf-
make clean