Skip to content
This repository was archived by the owner on Nov 23, 2025. It is now read-only.

Dev

Dev #5

Workflow file for this run

name: Build and Test
on:
pull_request:
branches:
- 'main'
- 'dev'
permissions:
contents: read
jobs:
build-test:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test Summary
run: |
echo "### ✅ Build Successful" >> $GITHUB_STEP_SUMMARY
echo "Python dependencies installed successfully" >> $GITHUB_STEP_SUMMARY
echo "Ready for review and merge" >> $GITHUB_STEP_SUMMARY