Skip to content

--package overrides --input #28

--package overrides --input

--package overrides --input #28

name: Send coverage report
on:
push:
branches:
- main
paths-ignore:
- pyproject.toml
jobs:
unit-tests-coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Set up uv
run: curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Install the project
run: uv sync --dev
- name: Send coverage report
run: |
uv run pytest --cov newversion --cov-report=xml
- name: Send coverage report
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}