Skip to content

Merge pull request #120 from chonkie-ai/development #124

Merge pull request #120 from chonkie-ai/development

Merge pull request #120 from chonkie-ai/development #124

name: Python Automated Testing
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v4
with:
version: latest
enable-cache: true
cache-dependency-glob: "pyproject.toml"
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install the project
run: uv sync --all-extras --dev
- name: Run tests
run: |
uv run pytest --cov-branch --cov-report=xml
- name: Upload coverage report to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: chonkie-ai/chonkie
# Only upload coverage from the latest Python version
fail_ci_if_error: false
verbose: true
override_commit: ${{ github.sha }}
flags: python-${{ matrix.python-version }}