Skip to content

add basic .editorconfig #18

add basic .editorconfig

add basic .editorconfig #18

Workflow file for this run

name: Code quality
on:
push:
pull_request:
env:
UV_PYTHON_PREFERENCE: only-system
UV_NO_SYNC: 1
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Acquire sources
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Setup Python
uses: actions/[email protected]
with:
python-version: "3.14"
architecture: x64
- name: Install uv
uses: astral-sh/[email protected]
with:
enable-cache: true
- name: Install dependencies
run: uv sync
- name: Ruff format
run: uv run ruff format --diff
- name: Ruff check
run: uv run ruff check