Add PyBasic as a built-in app #82
Workflow file for this run
This file contains hidden or 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
# SPDX-FileCopyrightText: 2025 Tim Cocks, written for Adafruit Industries | |
# | |
# SPDX-License-Identifier: MIT | |
name: Validate Build | |
on: [pull_request, push] | |
jobs: | |
validate-build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up requested Python version | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.12 | |
- name: Versions | |
shell: bash | |
run: | | |
python3 --version | |
- name: Checkout Current Repo | |
uses: actions/checkout@v4 | |
with: | |
submodules: true | |
show-progress: false | |
- name: Install reqs | |
shell: bash | |
run: | | |
pip install -r requirements.txt | |
- name: Build Fruit Jam OS | |
shell: bash | |
run: | | |
python build.py |