This repository has been archived by the owner on Jul 11, 2024. It is now read-only.
Merge pull request #106 from purduesigbots/readme-version-patch #212
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 PROS Project | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- 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: prosv5 --version | |
- name: Checkout | |
uses: actions/checkout@v2.3.4 | |
- name: Build PROS Project | |
run: prosv5 make clean all |