Skip to content

feat(cli): Implement interactive commit message editing ✨ #9

feat(cli): Implement interactive commit message editing ✨

feat(cli): Implement interactive commit message editing ✨ #9

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
run: curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Install dependencies
run: uv pip install --system -e '.[dev]'
- name: Lint with ruff
run: ruff check .
- name: Test with pytest and fail under 90% coverage
run: pytest --cov=ai_commit --cov-fail-under=90