Skip to content

build(deps-dev): bump ruff from 0.16.3 to 0.16.4 #1271

build(deps-dev): bump ruff from 0.16.3 to 0.16.4

build(deps-dev): bump ruff from 0.16.3 to 0.16.4 #1271

Workflow file for this run

name: "Coverage"
on: [push]
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- name: Set up uv
uses: astral-sh/setup-uv@v10.0.1
with:
python-version: "3.14"
- name: Install dependencies
run: uv sync --group coverage
- name: Run Tests and Record Coverage
run: |
uv run --group coverage coverage run -m pytest
uv run --group coverage coverage html --omit "unittests/*"
uv run --group coverage coverage report --fail-under 80 --omit "unittests/*"