Skip to content

improve code coverage #5

improve code coverage

improve code coverage #5

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v4
- run: uv sync --dev
- run: uv run ruff check .
- run: uv run ruff format --check .
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v4
- name: Install bubblewrap
run: sudo apt-get update && sudo apt-get install -y bubblewrap
- run: uv sync --dev
- run: uv run pytest --cov --cov-report=term-missing