cognee/.github/workflows/ruff_format.yaml
Igor Ilic 8aff9962dd test: Add test for ruff format for cognee code
Test if code is formatted for cognee

Test COG-650
2024-12-18 14:42:19 +01:00

11 lines
211 B
YAML

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"