test: Add test for ruff format for cognee code

Test if code is formatted for cognee

Test COG-650
This commit is contained in:
Igor Ilic 2024-12-18 14:42:19 +01:00
parent ad8f2a59d4
commit 8aff9962dd

11
.github/workflows/ruff_format.yaml vendored Normal file
View file

@ -0,0 +1,11 @@
name: Ruff
on: [ push, pull_request ]
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/ruff-action@v2
with:
args: "format --check"