Skip to content

🔖 bump version 0.11.2 -> 0.11.3 #33

🔖 bump version 0.11.2 -> 0.11.3

🔖 bump version 0.11.2 -> 0.11.3 #33

Workflow file for this run

name: Coverage
on: push
permissions:
contents: read
jobs:
test:
name: Run tests and collect coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v2
- name: Set up Python
run: uv python install
- name: Install the project
run: uv sync --no-dev --extra test
- name: Run tests
run: uv run pytest --cov --cov-report=xml
- name: Upload results to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}