cognee/.github/workflows/ruff_format.yaml
2025-01-09 18:49:45 +01:00

11 lines
212 B
YAML

name: 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"