Skip to content

added workflows and files from old repo #1

added workflows and files from old repo

added workflows and files from old repo #1

name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: install toolchain
run: sudo apt -y install gcc-arm-none-eabi
- name: check toolchain
run: arm-none-eabi-gcc --version
- name: build
run: cd pixracer_pro && mkdir build && cd build && cmake .. && make