Skip to content

feat: Add CI/CD pipeline and migrate from Poetry to UV #1

feat: Add CI/CD pipeline and migrate from Poetry to UV

feat: Add CI/CD pipeline and migrate from Poetry to UV #1

name: Build and Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install uv
run: pip install uv
- name: Install dependencies
run: uv pip install -r requirements.txt # Assuming requirements.txt will be used or generated by uv
- name: Run tests
run: |
# Add your test command here, e.g., pytest
echo "No tests configured yet. Add your test command here."