Skip to content

build(deps): bump coverage from 7.13.4 to 7.13.5 (#95) #335

build(deps): bump coverage from 7.13.4 to 7.13.5 (#95)

build(deps): bump coverage from 7.13.4 to 7.13.5 (#95) #335

Workflow file for this run

name: test
on: [push, pull_request]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Install dependencies
run: uv sync --extra test
- name: Run tests with coverage
run: |
uv run coverage run -m pytest
uv run coverage report
uv run coverage xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}