Skip to content

⬆️ (pyproject.toml): bump version from 0.1.1 to 0.1.2 to prepare for … #7

⬆️ (pyproject.toml): bump version from 0.1.1 to 0.1.2 to prepare for …

⬆️ (pyproject.toml): bump version from 0.1.1 to 0.1.2 to prepare for … #7

Workflow file for this run

name: Test Coverage
on:
push:
branches:
- master
jobs:
coverage:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Install Python 3.13
run: uv python install 3.13
- name: Install dependencies
run: uv sync
- name: Run tests with coverage
run: uv run pytest --cov=src --cov-report=xml
- name: Upload coverage report to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}