Skip to content
This repository has been archived by the owner on May 1, 2024. It is now read-only.

More auton stuff

More auton stuff #58

Workflow file for this run

name: Build Project
on:
push:
branches: '*'
pull_request:
branches: '*'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Get short SHA
uses: benjlevesque/short-sha@v2.2
id: short-sha
with:
length: 6
- name: Set short SHA
run: echo $SHA
env:
SHA: ${{ steps.short-sha.outputs.sha }}
- name: Install ARM Toolchain
uses: fiam/arm-none-eabi-gcc@v1
with:
release: '9-2019-q4'
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: PIP Installer
uses: BSFishy/pip-action@v1
with:
packages: pros-cli
- name: Testing PROS Install
run: pros --version
- name: Checkout
uses: actions/checkout@v2.3.4
- name: Build PROS Project
run: pros make clean all