Skip to content

Apply code formatting #25

Apply code formatting

Apply code formatting #25

Workflow file for this run

name: Run Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install uv
run: curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Install dependencies
run: uv sync --all-extras --all-groups --no-editable
- name: Run format check
run: uv run black --check .
- name: Run tests with coverage
run: uv run pytest --cov=violetear --cov-report=xml --cov-report=term