-
Notifications
You must be signed in to change notification settings - Fork 24
Open
Labels
bugSomething isn't workingSomething isn't workingpriority: mediumMedium priority - standard priorityMedium priority - standard priority
Description
Medium Infrastructure Issue
Missing CI/CD pipeline configuration.
File: .github/workflows/ (missing)
Severity: MEDIUM
Impact: No automated testing or deployment
Issues Found:
- No GitHub Actions workflows
- No automated testing
- No deployment automation
Suggested Fix
Add GitHub Actions workflow:
# .github/workflows/ci.yml
name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.13'
- name: Install dependencies
run: |
pip install -e .
- name: Run tests
run: |
pytest
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingpriority: mediumMedium priority - standard priorityMedium priority - standard priority