Skip to content

feat: switch to qwen2.5-coder:7b, reindex all commits — clean feature… #16

feat: switch to qwen2.5-coder:7b, reindex all commits — clean feature…

feat: switch to qwen2.5-coder:7b, reindex all commits — clean feature… #16

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install pytest "black==25.1.0"
- name: Check code style
run: black --check core/ cli/ tests/ scripts/
- name: Run tests
run: pytest tests/ -v