From aeb2f39fd847efc6ff6a1ad3e400ea7583ee7d4f Mon Sep 17 00:00:00 2001 From: Pavel Zorin Date: Fri, 9 Jan 2026 14:15:36 +0100 Subject: [PATCH] Chore: Remove Lint and Format check in favor to pre-commit --- .github/workflows/basic_tests.yml | 37 ------------------------------- 1 file changed, 37 deletions(-) diff --git a/.github/workflows/basic_tests.yml b/.github/workflows/basic_tests.yml index 1fc20a148..6d9ddce3a 100644 --- a/.github/workflows/basic_tests.yml +++ b/.github/workflows/basic_tests.yml @@ -34,43 +34,6 @@ env: ENV: 'dev' jobs: - - lint: - name: Run Linting - runs-on: ubuntu-22.04 - steps: - - name: Check out repository - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Cognee Setup - uses: ./.github/actions/cognee_setup - with: - python-version: ${{ inputs.python-version }} - - - name: Run Linting - uses: astral-sh/ruff-action@v2 - - format-check: - name: Run Formatting Check - runs-on: ubuntu-22.04 - steps: - - name: Check out repository - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Cognee Setup - uses: ./.github/actions/cognee_setup - with: - python-version: ${{ inputs.python-version }} - - - name: Run Formatting Check - uses: astral-sh/ruff-action@v2 - with: - args: "format --check" - unit-tests: name: Run Unit Tests runs-on: ubuntu-22.04