Skip to content

deps(actions): bump codecov/codecov-action from 5 to 6 #1317

deps(actions): bump codecov/codecov-action from 5 to 6

deps(actions): bump codecov/codecov-action from 5 to 6 #1317

Workflow file for this run

name: Ruff Linting
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
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 --group lint --no-dev
- name: Run ruff
run: |
cd backend
uv run --no-sync ruff check . --config pyproject.toml