Skip to content

re-arranted yml

re-arranted yml #88

name: Build Pixracer Pro
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: checkout submodules
run: git submodule update --init --recursive
- name: install toolchain
run: sudo apt update
run: sudo apt -y install gcc-arm-none-eabi

Check failure on line 16 in .github/workflows/build_pixracer_pro.yml

View workflow run for this annotation

GitHub Actions / Build Pixracer Pro

Invalid workflow file

The workflow is not valid. .github/workflows/build_pixracer_pro.yml (Line: 16, Col: 7): 'run' is already defined
- name: check toolchain
run: arm-none-eabi-gcc --version
- name: build pixracer_pro
run: cd pixracer_pro && mkdir build && cd build && cmake .. && make