Skip to content

update readme

update readme #7

Workflow file for this run

name: Build CI
on: [push, pull_request]
jobs:
makefile-build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Install Dependencies
run: sudo apt-get update && sudo apt-get install -y build-essential make gcc-arm-none-eabi binutils-arm-none-eabi libnewlib-arm-none-eabi
- name: Build
run: git submodule update --init && cd libopencm3 && make && cd ../ && mkdir build && cd build && cmake ../ && make