Skip to content

Fix TypeError in number increment/decrement services when entity.value is string #2883

Fix TypeError in number increment/decrement services when entity.value is string

Fix TypeError in number increment/decrement services when entity.value is string #2883

Workflow file for this run

---
name: Ruff
on:
pull_request:
push:
workflow_dispatch:
env:
DEFAULT_PYTHON: "3.13"
jobs:
ruff:
name: Ruff
runs-on: ubuntu-latest
steps:
- name: ‡️ Check out code from GitHub
uses: actions/[email protected]
- name: πŸ— Set up uv
uses: astral-sh/[email protected]
with:
enable-cache: true
python-version: ${{ env.DEFAULT_PYTHON }}
- name: πŸ— Install dependencies
run: uv sync --frozen --dev
- name: πŸš€ Run ruff linter
run: uv run ruff check --output-format=github .
- name: πŸš€ Run ruff formatter
run: uv run ruff format --check .