Skip to content

build(deps): bump gitpython from 3.1.45 to 3.1.52 #414

build(deps): bump gitpython from 3.1.45 to 3.1.52

build(deps): bump gitpython from 3.1.45 to 3.1.52 #414

Workflow file for this run

name: Code coverage
on: [push]
jobs:
run:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
env:
OS: ${{ matrix.os }}
PYTHON: ${{ matrix.python-version }}
steps:
- uses: actions/checkout@master
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install -U pip
pip install uv && uv sync --all-extras
- name: Generate coverage report
run: |
uv run pytest --cov=./ --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2.1.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: ./coverage/reports/
env_vars: OS,PYTHON
fail_ci_if_error: true
files: ./coverage.xml,./coverage1.xml,./coverage2.xml
flags: pytest
name: codecov-umbrella
verbose: true