cognee/.github/workflows/ruff_format.yaml
Vasilije 186b82c177
Update ruff_format.yaml (#513)
<!-- .github/pull_request_template.md -->

## Description
<!-- Provide a clear description of the changes in this PR -->

## DCO Affirmation
I affirm that all code in every commit of this pull request conforms to
the terms of the Topoteretes Developer Certificate of Origin
2025-02-09 15:48:19 +01:00

11 lines
219 B
YAML

name: lint | ruff format
on: [ pull_request ]
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/ruff-action@v2
with:
args: "format --check"