Skip to content

chore: speed-up of CI tests #302

chore: speed-up of CI tests

chore: speed-up of CI tests #302

Workflow file for this run

name: Ruff Linting
on:
push:
branches: [ main, dev ]
pull_request:
branches: [ main, dev ]
workflow_dispatch:
jobs:
ruff:
name: Ruff Linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
cache-dependency-glob: "backend/uv.lock"
- name: Install Python and dependencies
run: |
cd backend
uv python install 3.12
uv sync --frozen
- name: Run ruff
run: |
cd backend
uv run ruff check . --config pyproject.toml