This repository has been archived by the owner on May 1, 2024. It is now read-only.
Removed some unecessary parts of the program #75
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |